Created
April 3, 2010 10:22
-
-
Save stonegao/354351 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| # Install the dependencies | |
| sudo apt-get -y remove ffmpeg x264 libx264-dev | |
| sudo apt-get -y update | |
| sudo apt-get -y install build-essential subversion git-core checkinstall yasm texi2html libfaac-dev libfaad-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libsdl1.2-dev libx11-dev libxfixes-dev libxvidcore4-dev zlib1g-dev | |
| # Install x264 | |
| cd | |
| git clone git://git.videolan.org/x264.git | |
| cd x264 | |
| ./configure | |
| make | |
| sudo checkinstall --pkgname=x264 --pkgversion "1:0.svn`date +%Y%m%d`+`git rev-list HEAD -n 1 | head -c 7`" --backup=no --default | |
| # Install libtheora | |
| sudo apt-get -y install libogg-dev | |
| cd | |
| wget http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz | |
| tar xzvf libtheora-1.1.1.tar.gz | |
| cd libtheora-1.1.1 | |
| ./configure --disable-shared | |
| make | |
| sudo checkinstall --pkgname=libtheora --pkgversion "1.1.1" --backup=no --default | |
| # Install FFmpeg | |
| cd | |
| svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg | |
| cd ffmpeg | |
| ./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-pthreads --enable-libfaac --enable-libfaad --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libx264 --enable-libxvid --enable-x11grab | |
| make | |
| sudo checkinstall --pkgname=ffmpeg --pkgversion "4:0.5+svn`date +%Y%m%d`" --backup=no --default | |
| hash ffmpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment