Skip to content

Instantly share code, notes, and snippets.

@midwire
Forked from clayton/ffmpeg-install.sh
Last active September 4, 2018 08:00
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save midwire/048d983ac4ddd96d81f6 to your computer and use it in GitHub Desktop.
Save midwire/048d983ac4ddd96d81f6 to your computer and use it in GitHub Desktop.
Install FFMPEG on OS X with HomeBrew and all libs and support
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
@dkbrummitt
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment