Skip to content

Instantly share code, notes, and snippets.

@LongClipeus
Last active March 14, 2019 06:37
Show Gist options
  • Save LongClipeus/9870d00dfd02b40a890c5da12937d4cc to your computer and use it in GitHub Desktop.
Save LongClipeus/9870d00dfd02b40a890c5da12937d4cc to your computer and use it in GitHub Desktop.
How to compile and install FFmpeg on Ubuntu 16.04 LTS

Install the dependencies

sudo apt-get -y install build-essential autoconf automake cmake libtool git \
checkinstall

mkdir ffmpegtemp
cd ffmpegtemp

mkdir aom
cd aom
git clone https://aomedia.googlesource.com/aom
cmake aom/
make
sudo checkinstall -y --deldoc=yes
cd

d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment