Skip to content

Instantly share code, notes, and snippets.

@rohitrawat
Created September 22, 2016 04:23
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 rohitrawat/31c30a10eecb129ce9f07dacf65ac4e1 to your computer and use it in GitHub Desktop.
Save rohitrawat/31c30a10eecb129ce9f07dacf65ac4e1 to your computer and use it in GitHub Desktop.
install-ffmpeg.sh to build and install FFMPEG 2.3.3 for BigBlueButton installation
sudo apt-get install build-essential git-core checkinstall yasm texi2html libvorbis-dev libx11-dev libvpx-dev libxfixes-dev zlib1g-dev pkg-config netcat libncurses5-dev
FFMPEG_VERSION=2.3.3
cd /usr/local/src
if [ ! -d "/usr/local/src/ffmpeg-${FFMPEG_VERSION}" ]; then
sudo wget "http://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2"
sudo tar -xjf "ffmpeg-${FFMPEG_VERSION}.tar.bz2"
fi
cd "ffmpeg-${FFMPEG_VERSION}"
sudo ./configure --enable-version3 --enable-postproc --enable-libvorbis --enable-libvpx
sudo make
sudo checkinstall --pkgname=ffmpeg --pkgversion="5:${FFMPEG_VERSION}" --backup=no --deldoc=yes --default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment