Changes between Version 3 and Version 4 of UbuntuCompilationGuide


Ignore:
Timestamp:
04/29/2012 09:11:59 PM (13 months ago)
Author:
llogan
Comment:

add missing --enable-libvpx to ffmpeg ./configure; mention external libs

Legend:

Unmodified
Added
Removed
Modified
  • UbuntuCompilationGuide

    v3 v4  
    11= Compile FFmpeg on Ubuntu = 
    22 
    3 This guide supports Ubuntu Precise Pangolin 12.04, Ubuntu Oneiric Ocelot 11.10, Ubuntu Natty Narwhal 11.04, and Ubuntu Maverick Meerkat 10.10. 
     3This guide supports '''Ubuntu Precise Pangolin 12.04''', '''Ubuntu Oneiric Ocelot 11.10''', '''Ubuntu Natty Narwhal 11.04''', and '''Ubuntu Maverick Meerkat 10.10'''. This guide will enable several external encoders and decoders: ''libfaac'' (AAC encoder), ''libmp3lame'' (MP3 encoder), ''libopencore-amr'' (AMR encoder/decoder), ''libtheora'' (Theora encoder), ''libvorbis'' (Vorbis encoder), ''libvpx'' (VP8 encoder/decoder), and ''libx264'' (H.264 encoder). These are optional and may be omitted if desired. 
    44 
    55  '''Note:''' Copy and paste the whole code box for each step. 
     
    5353cd ffmpeg 
    5454./configure --enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb \ 
    55     --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 \ 
    56     --enable-nonfree --enable-version3 --enable-x11grab 
     55    --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libvpx \ 
     56    --enable-libx264 --enable-nonfree --enable-version3 --enable-x11grab 
    5757make 
    5858sudo checkinstall --pkgname=ffmpeg --pkgversion="5:$(date +%Y%m%d%H%M)-git" --backup=no \