Changes between Version 46 and Version 47 of UbuntuCompilationGuide
- Timestamp:
- 12/22/2012 04:42:48 AM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UbuntuCompilationGuide
v46 v47 91 91 }}} 92 92 93 === libaacplus (optional) === 94 HE-AAC audio encoder. Add `--enable-libaacplus` to your ffmpeg `./configure` line if you want to use this. 95 {{{ 96 sudo apt-get install -y libfftw3-dev automake unzip 97 cd 98 wget http://217.20.164.161/~tipok/aacplus/libaacplus-2.0.2.tar.gz 99 tar xzvf libaacplus-2.0.2.tar.gz 100 cd libaacplus-2.0.2 101 ./autogen.sh --disable-shared --enable-static 102 make 103 sudo checkinstall --pkgname=libaacplus --pkgversion=2.0.2 --backup=no --deldoc=yes \ 104 --fstrans=no --default 105 }}} 106 107 === FFmpeg ===#ffmpeg 93 === FFmpeg === 108 94 109 95 '''Note:''' Ubuntu Server users should omit `--enable-x11grab`. … … 122 108 }}} 123 109 124 '''Note 1:''' You can download the nightly [http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 FFmpeg source snapshot] as an alternative to using `git`.110 '''Note:''' You can download the nightly [http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 FFmpeg source snapshot] as an alternative to using `git`. 125 111 126 112 == Finish == … … 171 157 git pull 172 158 }}} 173 Now run `./configure`, `make`, and ` makeinstall` as shown in the [#x264 Install x264] section.159 Now run `./configure`, `make`, and `checkinstall` as shown in the [#x264 Install x264] section. 174 160 175 161 === fdk-aac === … … 179 165 git pull 180 166 }}} 181 Now run `./configure`, `make`, and ` makeinstall` as shown in the [#fdk-aac Install fdk-aac] section.167 Now run `./configure`, `make`, and `checkinstall` as shown in the [#fdk-aac Install fdk-aac] section. 182 168 183 169 === libvpx === … … 187 173 git pull 188 174 }}} 189 Now run `./configure`, `make`, and `make install` as shown in the [#libvpx Install libvpx] section. 175 Now run `./configure`, `make`, and `checkinstall` as shown in the [#libvpx Install libvpx] section. 176 177 === opus === 178 {{{ 179 cd ~/opus 180 make distclean 181 git pull 182 }}} 183 Now run `./configure`, `make`, and `checkinstall` as shown in the [#opusoptional Install opus] section. 190 184 191 185 === FFmpeg === … … 195 189 git pull 196 190 }}} 197 Now run `./configure`, `make`, and ` make install` as shown in the [#ffmpeg Install FFmpeg] section.191 Now run `./configure`, `make`, and `checkinstall` as shown in the [#FFmpeg Install FFmpeg] section. 198 192 199 193 ---- … … 202 196 To remove FFmpeg, x264, and other packages installed for this guide: 203 197 {{{ 204 sudo apt-get -y autoremove autoconf automake build-essential checkinstall fdk-aac ffmpeg git libfaac-dev \205 libf ftw3-dev libgpac-dev libjack-jackd2-dev libmp3lame-dev librtmp-dev libsdl1.2-dev libtheora-dev \206 libt ool libva-dev libvdpau-dev libvorbis-dev libvpx libx11-dev libxfixes-dev pkg-config qt-faststart\207 texi2html x264 yasm zlib1g-dev208 }}} 209 Lastly, delete the `x264`, `fdk-aac`, `libvpx`, `opus`, `libaacplus`and `ffmpeg` directories in your home folder.198 sudo apt-get -y autoremove autoconf build-essential checkinstall fdk-aac ffmpeg git libass-dev \ 199 libfaac-dev libgpac-dev libjack-jackd2-dev libmp3lame-dev librtmp-dev libsdl1.2-dev \ 200 libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libvpx libx11-dev libxfixes-dev \ 201 opus pkg-config qt-faststart texi2html x264 yasm zlib1g-dev 202 }}} 203 Lastly, delete the `x264`, `fdk-aac`, `libvpx`, `opus`, and `ffmpeg` directories in your home folder. 210 204 211 205 == If You Need Help ==


