Created
September 22, 2016 04:23
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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