Where can I download ffmpeg with libfaac (for Windows)?
02 Answers
ffmpeg -i in.mp3 -c:a aac -strict 2 out.aacor simply
ffmpeg -i in.mp3 out.aac 0 looks like you have to compile your own, the "official" binary distros probably don't have it because of "licensing collisions" (typically that x264 is GPL and libfaac's license isn't GPL friendly but you can build it yourself).
so you can build it yourself with it:
or use a sherpya ffmpeg and have the .dll in your path:
See also FFmpeg command to convert MP3 to AAC where it mentions that you can now use -acodec libvo_aacenc by default.