I would like to write an app the records audio continuously and analyze it in real time. I already know how to record file once and play it back, but I don't know how to make it continuous. I suppose there is some sort of circular buffer file in Java API, but I am quite new to Java and I didn't get my head around the APIs yet. Also can I keep this file entirely in memory, not to introduce overhead of writing to external storage? Any ideas?

link|improve this question

50% accept rate
feedback

1 Answer

Hmmm... I found the answer - you should just use AudioRecord http://www.androiddevblog.net/android/android-audio-recording-part-2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.