Changes between Version 1 and Version 2 of CentosCompilationGuide
- Timestamp:
- 12/06/2011 05:29:39 AM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CentosCompilationGuide
v1 v2 6 6 7 7 == Preparation == 8 Remove any existing packages. 8 === Remove any existing packages === 9 9 {{{ 10 10 # yum erase x264 ffmpeg … … 37 37 '''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 libtheora is not needed, then skip that section and then remove ''--enable-libtheora'' from the Install FFmpeg section. 38 38 39 === x264 === 39 === x264 ===#x264 40 H.264 video encoder. 40 41 {{{ 41 H.264 video encoder.42 42 cd ~/ffmpeg-source 43 43 git clone git://git.videolan.org/x264 … … 97 97 98 98 === vo-aacenc === 99 VisualOn AAC audio encoder.99 !VisualOn AAC audio encoder. 100 100 {{{ 101 101 cd ~/ffmpeg-source 102 102 wget http://downloads.sourceforge.net/opencore-amr/vo-aacenc-0.1.1.tar.gz 103 103 tar xzvf vo-aacenc-0.1.1.tar.gz 104 cd vo-aacenc-0.1.1 104 105 ./configure 105 106 make … … 107 108 }}} 108 109 109 110 === libvpx === 110 === libvpx ===#libvpx 111 111 VP8 video encoder. 112 112 {{{ … … 119 119 }}} 120 120 121 === FFmpeg === 121 === FFmpeg ===#ffmpeg 122 122 {{{ 123 123 cd ~/ffmpeg-source … … 148 148 git pull 149 149 }}} 150 Then run ./configure, make, and make install as shown in the Install x264 section. 150 Then run ./configure, make, and make install as shown in the [#x264 Install x264] section. 151 152 === Update libvpx === 153 {{{ 154 cd ~/ffmpeg-source/libvpx 155 make distclean 156 git pull 157 }}} 158 Then run ./configure, make, and make install as shown in the [#libvpx Install libvpx] section. 151 159 152 160 === Update FFmpeg === … … 156 164 git pull 157 165 }}} 158 Then run ./configure, make, and make install as shown in the Install FFmpeg section. 159 160 === Update libvpx === 161 {{{ 162 cd ~/ffmpeg-source/libvpx 163 make distclean 164 git pull 165 }}} 166 Then run ./configure, make, and make install as shown in the Install libvpx section. 166 Then run ./configure, make, and make install as shown in the [#ffmpeg Install FFmpeg] section. 167 167 168 168 == Reverting changes made by this guide == … … 171 171 cd ~/ffmpeg-source/yasm-1.2.0 172 172 # make uninstall 173 cd ~/ffmpeg-source/x264173 cd ../x264 174 174 # make uninstall 175 cd lame-3.99175 cd ../lame-3.99 176 176 # make uninstall 177 cd ~/ffmpeg-source/ffmpeg177 cd ../libogg-1.3.0 178 178 # make uninstall 179 cd ../libtheora-1.1.1 180 # make uninstall 181 cd ../libvorbis-1.3.2 182 # make uninstall 183 cd ../libvpx 184 # make uninstall 185 cd ../ffmpeg 186 # make uninstall 187 rm -rf ~/ffmpeg-source 179 188 }}} 180 189


