Changes between Version 19 and Version 20 of CentosCompilationGuide


Ignore:
Timestamp:
02/24/2013 07:06:03 PM (3 months ago)
Author:
evilsoup
Comment:

Added fdk_aac information & libtheora

Legend:

Unmodified
Added
Removed
Modified
  • CentosCompilationGuide

    v19 v20  
    1313Get the dependencies: 
    1414{{{ 
    15 # yum install gcc git make nasm pkgconfig wget zlib-devel 
     15# yum install gcc git make nasm pkgconfig wget zlib-devel libtheora-devel 
    1616}}} 
    1717 
     
    4545make 
    4646# make install 
     47}}} 
     48 
     49=== libfdk_aac === 
     50AAC audio encoder. 
     51{{{ 
     52cd ~/ffmpeg-source 
     53git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git 
     54cd fdk-aac 
     55autoreconf -fiv 
     56./configure --disable-shared 
     57make 
     58# checkinstall --pkgname=fdk-aac --pkgversion="$(date +%Y%m%d%H%M)-git" --backup=no \ 
     59--deldoc=yes --fstrans=no --default 
    4760}}} 
    4861 
     
    99112git clone git://source.ffmpeg.org/ffmpeg 
    100113cd ffmpeg 
    101 ./configure --enable-gpl --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 
     114./configure --enable-gpl --enable-libfdk_aac --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libtheora 
    102115make 
    103116# make install