Changes between Version 19 and Version 20 of CompilationGuide/Centos
- Timestamp:
- Feb 24, 2013, 8:06:03 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/Centos
v19 v20 13 13 Get the dependencies: 14 14 {{{ 15 # yum install gcc git make nasm pkgconfig wget zlib-devel 15 # yum install gcc git make nasm pkgconfig wget zlib-devel libtheora-devel 16 16 }}} 17 17 … … 45 45 make 46 46 # make install 47 }}} 48 49 === libfdk_aac === 50 AAC audio encoder. 51 {{{ 52 cd ~/ffmpeg-source 53 git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git 54 cd fdk-aac 55 autoreconf -fiv 56 ./configure --disable-shared 57 make 58 # checkinstall --pkgname=fdk-aac --pkgversion="$(date +%Y%m%d%H%M)-git" --backup=no \ 59 --deldoc=yes --fstrans=no --default 47 60 }}} 48 61 … … 99 112 git clone git://source.ffmpeg.org/ffmpeg 100 113 cd ffmpeg 101 ./configure --enable-gpl --enable-lib mp3lame --enable-libvorbis --enable-libvpx --enable-libx264114 ./configure --enable-gpl --enable-libfdk_aac --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libtheora 102 115 make 103 116 # make install