Last active
October 27, 2025 17:49
-
-
Save Piasy/b5dfd5c048eb69d1b91719988c0325d8 to your computer and use it in GitHub Desktop.
brew install ffmpeg with all options
This file contains hidden or 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 options ffmpeg | |
| brew install ffmpeg \ | |
| --with-chromaprint \ | |
| --with-fdk-aac \ | |
| --with-fontconfig \ | |
| --with-freetype \ | |
| --with-frei0r \ | |
| --with-game-music-emu \ | |
| --with-libass \ | |
| --with-libbluray \ | |
| --with-libbs2b \ | |
| --with-libcaca \ | |
| --with-libgsm \ | |
| --with-libmodplug \ | |
| --with-libsoxr \ | |
| --with-libssh \ | |
| --with-libvidstab \ | |
| --with-libvorbis \ | |
| --with-libvpx \ | |
| --with-opencore-amr \ | |
| --with-openh264 \ | |
| --with-openjpeg \ | |
| --with-openssl \ | |
| --with-opus \ | |
| --with-rtmpdump \ | |
| --with-rubberband \ | |
| --with-sdl2 \ | |
| --with-snappy \ | |
| --with-speex \ | |
| --with-tesseract \ | |
| --with-theora \ | |
| --with-tools \ | |
| --with-two-lame \ | |
| --with-wavpack \ | |
| --with-webp \ | |
| --with-x265 \ | |
| --with-xz \ | |
| --with-zeromq \ | |
| --with-zimg |
Error: invalid option: --with-chromaprint jaden@PureSlate ffmpeg %
I don't think any of this works anymore.
I believe you need to install chromaprint first and use -- enable-chromaprint but it's also been quite a while since I installed
Yeah, same here, I first install Homebrew’s chromaprint without it’s ffmpeg dependency with:
brew install --ignore-dependencies chromaprint
then, build ffmpeg with the --with-chromaprint option.
2024-10-27 2020 m1 macbook air
brew uninstall --force --ignore-dependencies ffmpeg
brew install --ignore-dependencies chromaprint
brew tap homebrew-ffmpeg/ffmpeg
brew install amiaopensource/amiaos/decklinksdk
brew tap lescanauxdiscrets/tap
brew install lescanauxdiscrets/tap/zvbi
brew install homebrew-ffmpeg/ffmpeg/ffmpeg $(brew options homebrew-ffmpeg/ffmpeg/ffmpeg | grep -vE '\s' | grep -- '--with-' | grep -vi libflite | tr '\n' ' ')`
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Error: invalid option: --with-chromaprint
jaden@PureSlate ffmpeg %
I don't think any of this works anymore.