I am wondering if there is a way to tell the MediaRecorder to append to an existing audio file instead of starting it over from the beginning. In other words, I would like to call setOutputFile() with an existing file and have the new audio appended to that file instead of erasing it.

link|improve this question

50% accept rate
feedback

1 Answer

Android MediaRecorder does not support appending.

Once you are recording the only possible actions are stop and reset.

So one option is saving as a WAV file, and then append to an existing WAV file saved on the SD card. Another possible option would be using AudioRecord instead. AudioRecord.read() allows one to save the raw audiodata to a buffer, which you could easily append to an existing recording.

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.