vote up 0 vote down star

This question is overflow from the following question:

http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aacm4a-file

Anyway, I learned how to create an aac file and then i found out that an aac is not just an m4a file with a different file extension. In fact, I need to somehow wrap the aac into an m4a container. Ideally I'd be able to simply make a call to the command line.

Thanks!

flag

2 Answers

vote up 1 vote down check

mp4box if you want a dedicated tool; its probably the easiest way to go. ffmpeg can do the job too.

link|flag
To add to this, ffmpeg usage is about as simple as "ffmpeg -i in.m4a -o out.aac". :) – Porges Sep 16 '08 at 10:36
mp4box is roughly the same, and I'd recommend it over ffmpeg because it places the moov atom at the beginning rather than the end, which is important for progressive download, iPod playback, etc. – Dark Shikari Sep 16 '08 at 10:39
vote up 0 vote down

dBpoweramp , a commercial utility can do this. You can also try the free, open source MediaCoder.

link|flag

Your Answer

Get an OpenID
or

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