Skip to content

Instantly share code, notes, and snippets.

View sachk's full-sized avatar
🏁

sacha sachk

🏁
  • Sydney, Australia
  • 12:34 (UTC +10:00)
View GitHub Profile
@sachk
sachk / ffmpeg-nonfree-build-ubuntu-16.04.sh
Last active November 6, 2018 07:20 — forked from silverkorn/ffmpeg-nonfree-build-ubuntu-16.04.sh
An automated script to build FFmpeg non-free on Debian/Ubuntu with as much features as possible.
# TODO: Verify to link statically some dependencies usually not available in a default instllation of RHEL/CentOS (ex.: libxcb)
###################
## Configuration ##
###################
FFMPEG_CPU_COUNT=$(nproc)
FFMPEG_ENABLE="--enable-gpl --enable-version3 --enable-nonfree --enable-runtime-cpudetect --enable-gray --enable-openssl --enable-libfreetype"
FFMPEG_HOME=/usr/local/src/ffmpeg