I was looking for a way to record in mpeg-4 with the ability to pause and resume but it seemed like there isn't one. So I decided to record in raw wave format and convert to .m4a. Is there a way I can convert .wav file to .m4a in android. I've looked around for mencoder port for android but found none, there were some post's about porting ffmpeg to android on linux but its not quite clear how i can use it in android to merge two .m4a files or convert .wav file to .m4a.
| |||
|
feedback
|
|
Assuming that you build ffmpeg with the relevant formats and codecs, converting
If you're doing audio work, you might have better luck with SoX. | |||
|
feedback
|
|
There are two possible things you could mean by "merging" the audio files, and two different ways to go about it using ffmpeg: Putting two separate audio tracks into the same fileLike on a DVD where there's a normal audio track, and another audio track like commentary or a dubbed language. To do this with ffmpeg and two m4a files, use the command Concatenating two audio filesMaking the second file play immediately after the first. The easiest way to do this is to use a program designed for audio manipulation like SoX. It appears that there is a recent but unstable Android port of SoX.
| |||||
feedback
|