Skip to content

Instantly share code, notes, and snippets.

@martin-juul
Created September 26, 2020 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martin-juul/605e6d40ebd89f3bb18e3a726ee7059a to your computer and use it in GitHub Desktop.
Save martin-juul/605e6d40ebd89f3bb18e3a726ee7059a to your computer and use it in GitHub Desktop.
Install ffmpeg with nonfree libs
#!/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 \
--with-openssl@1.1 \
--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