Skip to content

Instantly share code, notes, and snippets.

@bvibber
Created November 14, 2014 03:45
Show Gist options
  • Save bvibber/e6d2de1583f06b26a561 to your computer and use it in GitHub Desktop.
Save bvibber/e6d2de1583f06b26a561 to your computer and use it in GitHub Desktop.
PREFIX=/usr
sudo apt-get build-dep libav || exit 1
wget -c https://libav.org/releases/libav-10.5.tar.gz && tar zxvf libav-10.5.tar.gz || exit 1
(cd libav-10.5 && ./configure --prefix=/opt/libav10 --disable-avplay --disable-avprobe --disable-avserver --enable-runtime-cpudetect --enable-libopus --enable-libvorbis --enable-libvpx && make -j4) || exit 1
sudo cp libav-10.5/avconv $PREFIX/bin/avconv10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment