Giuseppe
Giuseppe

Reputation: 1089

How to draw waveform of Android's audio recording?

I would like to show a waveform during the audio recording. Some example please?

Thank you.

Upvotes: 7

Views: 9430

Answers (1)

Axis
Axis

Reputation: 846

You can look at the answer here : Voice Detection in Android Application to find out how to record into a byte[]. Then all you have to do is draw a graph of each value in the byte[] as a function of time.

Upvotes: 5

Related Questions