Changes between Version 96 and Version 97 of CompilationGuide/Ubuntu
- Timestamp:
- Jun 14, 2014, 12:23:58 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/Ubuntu
v96 v97 25 25 {{{ 26 26 #!div style="border: 1pt dotted; margin: 1em; background-color: #fffff9;" 27 '''Notes:''' 27 28 * Server users can omit the `ffplay` and x11 dependencies: `libsdl1.2-dev libva-dev libvdpau-dev libx11-dev libxext-dev libxfixes-dev`. 28 29 * Lucid lacks the package `libva-dev`. This can be ignored. … … 35 36 You can compile `ffmpeg` to your liking. If you do not require certain encoders you may skip the relevant section and then remove the appropriate `./configure` option in FFmpeg. For example, if libopus is not needed, then skip that section and then remove `--enable-libopus` from the [#ffmpeg Install FFmpeg] section. 36 37 37 This guide will create several directories in your home directory:38 This guide is designed to be non-intrusive and will create several directories in your home directory: 38 39 39 40 * `ffmpeg_sources` – Where the source files will be downloaded. … … 64 65 make install 65 66 make distclean 66 export "PATH=$PATH:$HOME/bin"67 67 }}} 68 68 … … 78 78 tar xjvf last_x264.tar.bz2 79 79 cd x264-snapshot* 80 ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static80 PATH="$PATH:$HOME/bin" ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static 81 81 make 82 82 make install … … 174 174 {{{ 175 175 #!div style="border: 1pt dotted; margin: 1em; background-color: #fffff9;" 176 '''Note:''' Server users should remove `--enable-x11grab`.176 '''Note:''' Server users can omit `--enable-x11grab` (this option is for x11 screen grabbing). 177 177 }}} 178 178 … … 182 182 tar xjvf ffmpeg-snapshot.tar.bz2 183 183 cd ffmpeg 184 PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure --prefix="$HOME/ffmpeg_build" \ 185 --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" \ 186 --bindir="$HOME/bin" --extra-libs="-ldl" --enable-gpl --enable-libass --enable-libfdk-aac \ 187 --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis \ 188 --enable-libvpx --enable-libx264 --enable-nonfree --enable-x11grab 184 PATH="$PATH:$HOME/bin" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \ 185 --prefix="$HOME/ffmpeg_build" \ 186 --extra-cflags="-I$HOME/ffmpeg_build/include" \ 187 --extra-ldflags="-L$HOME/ffmpeg_build/lib" \ 188 --bindir="$HOME/bin" \ 189 --extra-libs="-ldl" \ 190 --enable-gpl \ 191 --enable-libass \ 192 --enable-libfdk-aac \ 193 --enable-libfreetype \ 194 --enable-libmp3lame \ 195 --enable-libopus \ 196 --enable-libtheora \ 197 --enable-libvorbis \ 198 --enable-libvpx \ 199 --enable-libx264 \ 200 --enable-nonfree \ 201 --enable-x11grab 189 202 make 190 203 make install
