Changes between Version 4 and Version 5 of UbuntuCompilationGuideHardy


Ignore:
Timestamp:
10/22/2012 10:47:22 PM (7 months ago)
Author:
llogan
Comment:

removed libtheora. less is better.

Legend:

Unmodified
Added
Removed
Modified
  • UbuntuCompilationGuideHardy

    v4 v5  
    33[[PageOutline(2, Contents)]] 
    44 
    5 This guide supports '''Ubuntu Hardy Heron 8.04 LTS'''. If you are using a different Ubuntu version see the main [wiki:UbuntuCompilationGuide Compile FFmpeg on Ubuntu Guide]. This guide will enable several external encoders and decoders: ''libfaac'' (AAC encoder), ''libmp3lame'' (MP3 encoder), ''libtheora'' (Theora encoder), ''libvorbis'' (Vorbis encoder), ''libvpx'' (VP8 encoder/decoder), and ''libx264'' (H.264 encoder). These are optional and may be omitted if desired. 
     5This guide supports '''Ubuntu Hardy Heron 8.04 LTS'''. If you are using a different Ubuntu version see the main [wiki:UbuntuCompilationGuide Compile FFmpeg on Ubuntu Guide]. This guide will enable several external encoders and decoders: ''libfaac'' (AAC encoder), ''libmp3lame'' (MP3 encoder), ''libvorbis'' (Vorbis encoder), ''libvpx'' (VP8 encoder/decoder), and ''libx264'' (H.264 encoder). These are optional and may be omitted if desired. 
    66 
    77  '''Note:''' Copy and paste the whole code box for each step. 
     
    6767}}} 
    6868 
    69 === libtheora === 
    70 Theora video encoder. 
    71 {{{ 
    72 sudo apt-get -y install libogg-dev 
    73 cd 
    74 wget http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz 
    75 tar xzvf libtheora-1.1.1.tar.gz 
    76 cd libtheora-1.1.1 
    77 ./configure --disable-shared 
    78 make 
    79 sudo checkinstall --pkgname=libtheora --pkgversion="1.1.1" --backup=no \ 
    80   --deldoc=yes --fstrans=no --default 
    81 }}} 
    82  
    8369=== libvpx ===#libvpx 
    8470VP8 video encoder and decoder. 
     
    10086cd ffmpeg 
    10187./configure --enable-gpl --enable-version3 --enable-nonfree --enable-libfaac \ 
    102   --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx \ 
    103   --enable-libx264 --enable-x11grab 
     88  --enable-libmp3lame --enable-libvorbis --enable-libvpx   --enable-libx264 \ 
     89  --enable-x11grab 
    10490make 
    10591sudo checkinstall --pkgname=ffmpeg --pkgversion="4:git-$(date +%Y%m%d)" --backup=no \ 
     
    154140{{{ 
    155141sudo apt-get autoremove build-essential checkinstall ffmpeg git-core lame-ffmpeg \ 
    156   libfaac-dev libsdl1.2-dev libtheora libvorbis-dev libx11-dev libxext-dev libxfixes-dev \ 
     142  libfaac-dev libsdl1.2-dev libvorbis-dev libx11-dev libxext-dev libxfixes-dev \ 
    157143  nasm texi2html x264 yasm zlib1g-dev 
    158144}}} 
    159 Lastly, delete the `ffmpeg`, `x264`, `yasm`, `theora`, and `lame` directories in your home folder. 
     145Lastly, delete the `ffmpeg`, `x264`, `yasm`, and `lame` directories in your home folder. 
    160146 
    161147== If You Need Help ==