views:

793

answers:

2

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.

+1  A: 

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

Dark Shikari
To add to this, ffmpeg usage is about as simple as "ffmpeg -i in.m4a -o out.aac". :)
Porges
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
A: 

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

Magnus Johansson