Changes between Version 47 and Version 48 of UbuntuCompilationGuide
- Timestamp:
- 01/11/2013 08:37:30 PM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UbuntuCompilationGuide
v47 v48 11 11 Remove any existing packages: 12 12 {{{ 13 sudo apt-get remove ffmpeg x264 libav-tools libvpx-dev libx264-dev 13 sudo apt-get remove ffmpeg x264 libav-tools libvpx-dev libx264-dev yasm 14 14 }}} 15 15 … … 22 22 libgpac-dev libjack-jackd2-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev \ 23 23 librtmp-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev \ 24 libx11-dev libxext-dev libxfixes-dev pkg-config texi2html yasmzlib1g-dev24 libx11-dev libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev 25 25 }}} 26 26 … … 30 30 sudo apt-get -y install autoconf build-essential checkinstall git libass-dev libfaac-dev \ 31 31 libgpac-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev librtmp-dev \ 32 libtheora-dev libtool libvorbis-dev pkg-config texi2html yasmzlib1g-dev32 libtheora-dev libtool libvorbis-dev pkg-config texi2html zlib1g-dev 33 33 }}} 34 34 35 35 == Installation == 36 37 === Yasm === 38 39 Yasm is an assembler and is recommended for x264 and FFmpeg. 40 {{{ 41 cd 42 wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz 43 tar xzvf yasm-1.2.0.tar.gz 44 cd yasm-1.2.0 45 ./configure 46 make 47 sudo checkinstall --pkgname=yasm --pkgversion="1.2.0" --backup=no \ 48 --deldoc=yes --fstrans=no --default 49 }}} 50 36 51 === x264 === 37 52 H.264 video encoder. The following commands will get the current source files, compile, and install x264. See the [wiki:x264EncodingGuide x264 Encoding Guide] for some usage examples.


