Changes between Version 73 and Version 74 of CompilationGuide/Ubuntu
- Timestamp:
- Jun 5, 2013, 12:22:07 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/Ubuntu
v73 v74 1 = Compile FFmpeg on Ubuntu =1 = Compile FFmpeg on Ubuntu, Debian, or Mint = 2 2 3 3 [[PageOutline(2, Contents)]] 4 4 5 This guide for '''Ubuntu 13.04 Raring Ringtail''' and '''Linux Mint 15 Olivia''' will provide a local install of the latest FFmpeg tools and libraries including several external encoding and decoding libraries (codecs). This will not provide a system installation and therefore will not interfere with anything such as repository packages. See [[UbuntuCompilationGuide?version=59|these instructions]] if you prefer a system installation, and recent [http://ffmpeg.org/download.html#LinuxBuilds static builds] are also available for lazy people or those who are unable to compile.5 This guide for '''Ubuntu 13.04 Raring Ringtail''', '''Debian 7.0 Wheezy''', and '''Linux Mint 15 Olivia''' will provide a local install of the latest FFmpeg tools and libraries including several external encoding and decoding libraries (codecs). This will not provide a system installation and therefore will not interfere with anything such as repository packages. See [[UbuntuCompilationGuide?version=59|these instructions]] if you prefer a system installation, and recent [http://ffmpeg.org/download.html#LinuxBuilds static builds] are also available for lazy people or those who are unable to compile. 6 6 7 7 Separate guides are available for: … … 22 22 sudo apt-get -y install autoconf automake build-essential git libass-dev libgpac-dev libmp3lame-dev \ 23 23 libopus-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libvpx-dev \ 24 libx11-dev libxext-dev libxfixes-dev pkg-config texi2html yasm zlib1g-dev 24 libx11-dev libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev 25 mkdir ~/ffmpeg_sources 25 26 }}} 26 27 27 UbuntuServer or headless users can omit: `libsdl1.2-dev libva-dev libvdpau-dev libx11-dev libxext-dev libxfixes-dev`.28 Server or headless users can omit: `libsdl1.2-dev libva-dev libvdpau-dev libx11-dev libxext-dev libxfixes-dev`. 28 29 29 30 ---- 30 31 31 32 == Compilation & Installation == 33 34 === Yasm === 35 Yasm is an assembler used by x264 and FFmpeg. Ubuntu and Mint users can simply install it from the repository. Debian users need to compile Yasm because the version in the repository is too old. 36 37 ==== Ubuntu & Mint ==== 38 {{{ 39 sudo apt-get install yasm 40 }}} 41 42 ==== Debian ==== 43 {{{ 44 cd ~/ffmpeg_sources 45 wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz 46 tar xzvf yasm-1.2.0.tar.gz 47 cd yasm-1.2.0 48 ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" 49 make 50 make install 51 make distclean 52 . ~/.profile 53 }}} 32 54 33 55 === x264 === … … 36 58 37 59 {{{ 38 mkdir ~/ffmpeg_sources39 60 cd ~/ffmpeg_sources 40 61 git clone --depth 1 git://git.videolan.org/x264.git … … 69 90 === ffmpeg === 70 91 71 '''Note:''' UbuntuServer users should remove `--enable-x11grab` from the following command:92 '''Note:''' Server users should remove `--enable-x11grab` from the following command: 72 93 73 94 {{{ … … 83 104 make distclean 84 105 hash -r 85 source ~/.profile86 106 }}} 87 107 … … 113 133 sudo apt-get -y install autoconf automake build-essential git libass-dev libgpac-dev libmp3lame-dev \ 114 134 libopus-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libvpx-dev \ 115 libx11-dev libxext-dev libxfixes-dev pkg-config texi2html yasmzlib1g-dev135 libx11-dev libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev 116 136 }}} 117 137 … … 151 171 To remove ffmpeg, x264, and dependencies installed for this guide: 152 172 {{{ 153 rm -rf ~/ffmpeg_build ~/ffmpeg_sources ~/bin/{ffmpeg,ffp lay,ffprobe,ffserver,x264}173 rm -rf ~/ffmpeg_build ~/ffmpeg_sources ~/bin/{ffmpeg,ffprobe,ffserver,vsyasm,x264,yasm,ytasm} 154 174 sudo apt-get autoremove autoconf automake build-essential git libass-dev libgpac-dev \ 155 175 libmp3lame-dev libopus-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev \ 156 libvorbis-dev libvpx-dev libx11-dev libxext-dev libxfixes-dev texi2html yasmzlib1g-dev176 libvorbis-dev libvpx-dev libx11-dev libxext-dev libxfixes-dev texi2html zlib1g-dev 157 177 hash -r 158 178 }}}
