Last active
September 26, 2024 11:22
-
-
Save Piasy/b5dfd5c048eb69d1b91719988c0325d8 to your computer and use it in GitHub Desktop.
brew install ffmpeg with all options
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 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 |
@df-a thank you for the write up, super helpful!
One nit I would add:
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
to
git clone --depth 1 https://git.ffmpeg.org/ffmpeg.git ffmpeg
to reduce downloaded artifacts from ~180mb to ~17mb
And I also had to update the .configure command to:
./configure --prefix=/usr/local --enable-gpl --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libopus --enable-libxvid --enable-chromaprint --enable-libopenjpeg --enable-libaom --extra-ldflags=-L/opt/homebrew/lib --samples=fate-suite/ --extra-cflags=-I/opt/homebrew/include
To use homebrewed lame and other requirements. Otherwise I kept getting ERROR: libmp3lame >= 3.98.3 not found
errors
M1 chip
Error: invalid option: --with-chromaprint
2024 year and there is no way to install ffmpeg with all options
M1 chip
Error: invalid option: --with-chromaprint
2024 year and there is no way to install ffmpeg with all options
@alexey-sh try this: https://stackoverflow.com/a/55108365/13724447
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your response, I have tried using chatgpt assistance, but it didn't work.