Changes between Version 4 and Version 5 of UbuntuCompilationGuideHardy
- Timestamp:
- 10/22/2012 10:47:22 PM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UbuntuCompilationGuideHardy
v4 v5 3 3 [[PageOutline(2, Contents)]] 4 4 5 This guide supports '''Ubuntu Hardy Heron 8.04 LTS'''. If you are using a different Ubuntu version see the main [wiki:UbuntuCompilationGuide Compile FFmpeg on Ubuntu Guide]. This guide will enable several external encoders and decoders: ''libfaac'' (AAC encoder), ''libmp3lame'' (MP3 encoder), ''lib theora'' (Theora encoder), ''libvorbis'' (Vorbis encoder), ''libvpx'' (VP8 encoder/decoder), and ''libx264'' (H.264 encoder). These are optional and may be omitted if desired.5 This guide supports '''Ubuntu Hardy Heron 8.04 LTS'''. If you are using a different Ubuntu version see the main [wiki:UbuntuCompilationGuide Compile FFmpeg on Ubuntu Guide]. This guide will enable several external encoders and decoders: ''libfaac'' (AAC encoder), ''libmp3lame'' (MP3 encoder), ''libvorbis'' (Vorbis encoder), ''libvpx'' (VP8 encoder/decoder), and ''libx264'' (H.264 encoder). These are optional and may be omitted if desired. 6 6 7 7 '''Note:''' Copy and paste the whole code box for each step. … … 67 67 }}} 68 68 69 === libtheora ===70 Theora video encoder.71 {{{72 sudo apt-get -y install libogg-dev73 cd74 wget http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz75 tar xzvf libtheora-1.1.1.tar.gz76 cd libtheora-1.1.177 ./configure --disable-shared78 make79 sudo checkinstall --pkgname=libtheora --pkgversion="1.1.1" --backup=no \80 --deldoc=yes --fstrans=no --default81 }}}82 83 69 === libvpx ===#libvpx 84 70 VP8 video encoder and decoder. … … 100 86 cd ffmpeg 101 87 ./configure --enable-gpl --enable-version3 --enable-nonfree --enable-libfaac \ 102 --enable-libmp3lame --enable-lib theora --enable-libvorbis --enable-libvpx\103 --enable- libx264 --enable-x11grab88 --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 \ 89 --enable-x11grab 104 90 make 105 91 sudo checkinstall --pkgname=ffmpeg --pkgversion="4:git-$(date +%Y%m%d)" --backup=no \ … … 154 140 {{{ 155 141 sudo apt-get autoremove build-essential checkinstall ffmpeg git-core lame-ffmpeg \ 156 libfaac-dev libsdl1.2-dev lib theora libvorbis-dev libx11-dev libxext-dev libxfixes-dev \142 libfaac-dev libsdl1.2-dev libvorbis-dev libx11-dev libxext-dev libxfixes-dev \ 157 143 nasm texi2html x264 yasm zlib1g-dev 158 144 }}} 159 Lastly, delete the `ffmpeg`, `x264`, `yasm`, `theora`,and `lame` directories in your home folder.145 Lastly, delete the `ffmpeg`, `x264`, `yasm`, and `lame` directories in your home folder. 160 146 161 147 == If You Need Help ==


