Changes between Version 134 and Version 135 of CompilationGuide/Ubuntu
- Timestamp:
- Jun 1, 2017, 9:54:26 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/Ubuntu
v134 v135 11 11 {{{ 12 12 #!div style="border: 1pt dotted; margin: 1em; background-color: #fffff9;" 13 '''Note:''' FFmpeg has returned in Ubuntu 15.04 Vivid Vervet . You may still wish to compile if you experience a bug or want to customize your build, and it will not interfere with the ''ffmpeg'' package in the repository.13 '''Note:''' FFmpeg has returned in Ubuntu 15.04 Vivid Vervet and can be installed via `apt-get install ffmpeg`. You may still wish to compile if you experience a bug or want to customize your build, and it will not interfere with the ''ffmpeg'' package in the repository. 14 14 }}} 15 15 … … 51 51 52 52 You can easily undo any of this as shown in [#RevertingChangesMadebyThisGuide Reverting Changes Made by This Guide]. 53 54 === Yasm === 55 56 An assembler for x86 optimizations used by x264 and FFmpeg. Highly recommended or your resulting build may be very slow. 57 58 If your repository provides yasm version ≥ 1.2.0 then you can install that instead of compiling: 59 60 {{{ 61 sudo apt-get install yasm 62 }}} 63 64 Otherwise you can compile: 65 66 {{{ 67 cd ~/ffmpeg_sources 68 wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz 69 tar xzvf yasm-1.3.0.tar.gz 70 cd yasm-1.3.0 71 ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" 72 make 73 make install 74 }}} 53 75 54 76 === nasm === … … 201 223 202 224 {{{ 203 cd ~/ffmpeg_sources 204 wget http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-1.6.1.tar.bz2 205 tar xjvf libvpx-1.6.1.tar.bz2 206 cd libvpx -1.6.1225 sudo apt-get install git 226 cd ~/ffmpeg_sources 227 git clone --depth 1 https://chromium.googlesource.com/webm/libvpx.git 228 cd libvpx 207 229 PATH="$HOME/bin:$PATH" ./configure --prefix="$HOME/ffmpeg_build" --disable-examples --disable-unit-tests 208 230 PATH="$HOME/bin:$PATH" make
