Created
September 26, 2020 08:25
-
-
Save martin-juul/605e6d40ebd89f3bb18e3a726ee7059a to your computer and use it in GitHub Desktop.
Install ffmpeg with nonfree libs
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
#!/bin/bash | |
brew install chromaprint | |
brew uninstall --ignore-dependencies ffmpeg | |
brew tap homebrew-ffmpeg/ffmpeg | |
brew install homebrew-ffmpeg/ffmpeg/ffmpeg \ | |
--with-chromaprint \ | |
--with-fdk-aac \ | |
--with-libbluray \ | |
--with-libbs2b \ | |
--with-libcaca \ | |
--with-libgsm \ | |
--with-libmodplug \ | |
--with-librsvg \ | |
--with-libsoxr \ | |
--with-libssh \ | |
--with-libvidstab \ | |
--with-libvmaf \ | |
--with-libxml2 \ | |
--with-opencore-amr \ | |
--with-openh264 \ | |
--with-openjpeg \ | |
[email protected] \ | |
--with-rav1e \ | |
--with-rtmpdump \ | |
--with-rubberband \ | |
--with-speex \ | |
--with-srt \ | |
--with-tesseract \ | |
--with-two-lame \ | |
--with-wavpack \ | |
--with-webp \ | |
--with-xvid \ | |
--with-zimg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment