Where can I download ffmpeg with libfaac?

Where can I download ffmpeg with libfaac (for Windows)?

0

2 Answers

ffmpeg -i in.mp3 -c:a aac -strict 2 out.aac

or 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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like