Changes between Version 15 and Version 16 of CentosCompilationGuide
- Timestamp:
- 10/22/2012 10:40:55 PM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CentosCompilationGuide
v15 v16 34 34 }}} 35 35 36 '''Note:''' If you do not require certain encoders you may skip the relevant section and then remove the appropriate ./configure option in FFmpeg. For example, if lib theora is not needed, then skip that section and then remove ''--enable-libtheora'' from the [#ffmpeg Install FFmpeg] section.36 '''Note:''' If you do not require certain encoders you may skip the relevant section and then remove the appropriate ./configure option in FFmpeg. For example, if libvorbis is not needed, then skip that section and then remove ''--enable-libvorbis'' from the [#ffmpeg Install FFmpeg] section. 37 37 38 38 === x264 ===#x264 … … 60 60 61 61 === libogg === 62 Required for lib theora and libvorbis.62 Required for libvorbis. 63 63 {{{ 64 64 cd ~/ffmpeg-source … … 66 66 tar xzvf libogg-1.3.0.tar.gz 67 67 cd libogg-1.3.0 68 ./configure --disable-shared69 make70 # make install71 }}}72 73 === libtheora ===74 Theora video encoder.75 {{{76 cd ~/ffmpeg-source77 wget http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz78 tar xzvf libtheora-1.1.1.tar.gz79 cd libtheora-1.1.180 68 ./configure --disable-shared 81 69 make … … 90 78 tar xzvf libvorbis-1.3.3.tar.gz 91 79 cd libvorbis-1.3.3 92 ./configure --disable-shared93 make94 # make install95 }}}96 97 === vo-aacenc ===98 !VisualOn AAC audio encoder.99 {{{100 cd ~/ffmpeg-source101 wget http://downloads.sourceforge.net/opencore-amr/vo-aacenc-0.1.2.tar.gz102 tar xzvf vo-aacenc-0.1.2.tar.gz103 cd vo-aacenc-0.1.2104 80 ./configure --disable-shared 105 81 make … … 135 111 git clone git://source.ffmpeg.org/ffmpeg 136 112 cd ffmpeg 137 ./configure --enable-gpl --enable-libmp3lame --enable-lib theora --enable-libvo-aacenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-version3113 ./configure --enable-gpl --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 138 114 make 139 115 # make install … … 188 164 cd ../libogg-1.3.0 189 165 # make uninstall 190 cd ../libtheora-1.1.1191 # make uninstall192 166 cd ../libvorbis-1.3.3 193 167 # make uninstall 194 168 cd ../libvpx 195 # make uninstall196 cd ../vo-aacenc-0.1.2197 169 # make uninstall 198 170 cd ../zlib-1.2.7


