I need to be able to split and merge recorded audio in Android. Since there are a number of different formats, does anyone know which format is easiest to handle?
It's only the formats with a dot under "Encoder" that is available for recording.
I need to be able to split and merge recorded audio in Android. Since there are a number of different formats, does anyone know which format is easiest to handle?
It's only the formats with a dot under "Encoder" that is available for recording.
You can record .wav files by capturing the raw audio data by using AudioRecord. You don't need any encoding, just prepend a small 44-byte header and you have your .wav file. Splitting and merging the raw audio data is then trivial, since they are just arrays of values.