-
-
Save midwire/048d983ac4ddd96d81f6 to your computer and use it in GitHub Desktop.
Install FFMPEG on OS X with HomeBrew and all libs and support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install ffmpeg \ | |
--with-dcadec \ | |
--with-faac \ | |
--with-fdk-aac \ | |
--with-ffplay \ | |
--with-fontconfig \ | |
--with-freetype \ | |
--with-frei0r \ | |
--with-libass \ | |
--with-libbluray \ | |
--with-libbs2b \ | |
--with-libcaca \ | |
--with-libquvi \ | |
--with-libsoxr \ | |
--with-libssh \ | |
--with-libvidstab \ | |
--with-libvorbis \ | |
--with-libvpx \ | |
--with-opencore-amr \ | |
--with-openjpeg \ | |
--with-openssl \ | |
--with-opus \ | |
--with-rtmpdump \ | |
--with-schroedinger \ | |
--with-snappy \ | |
--with-speex \ | |
--with-theora \ | |
--with-tools \ | |
--with-webp \ | |
--with-x265 \ | |
--with-zeromq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think I found this on Stackoverflow a long time ago:
brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
It will install with all of the options without you having to update the gist as libs are removed or added.