Problem exporting to AAC… Help!

I should have mentioned that if you don’t mind using Audacity’s command-line export you can choose the native FFmpeg AAC encoder rather than the libvo-aacenc which you get if you export choosing “M4A (AAC) Files (FFmpeg)” or “Custom FFmpeg Export”. Using the native encoder also lets you encode more than stereo.

“-strict experimental -c:a aac” tells FFmpeg to use the native AAC encoder. This is the syntax for setting bit rate (AAC’s version of “constant bit rate”) with the native encoder at bit rate of 240 kbps:

ffmpeg -i - -strict experimental -c:a aac -b:a 240k "%f"

This is the syntax for setting quality (variable bit rate) to the maximum (10) with the native encoder:

ffmpeg -i -  -strict experimental -c:a aac -q:a 10 "%f"

The above should also apply to the FFmpeg we recommend for Mac OS X from the Buanzo site.

Gale