Changes between Version 1 and Version 2 of How to quickly compile FFmpeg with libx264 (x264, H.264)
- Timestamp:
- 07/13/2012 02:51:04 AM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to quickly compile FFmpeg with libx264 (x264, H.264)
v1 v2 1 See here '''[[How to quickly compile libx264]]''' 1 = How to quickly compile FFmpeg with libx264 (x264, H.264) = 2 2 3 In order to quickly compile your FFmpeg with the support for libx264 library, you can type the following commands in your shell: 3 1. Compile x264. See '''[[How to quickly compile libx264]]''' for instructions. 4 5 2. Compile FFmpeg: 4 6 {{{ 5 #cd /my/path/where/i/keep/compiled/stuff6 #git clone git://git.videolan.org/ffmpeg.git7 #cd ffmpeg8 #./configure --enable-gpl --enable-libx2649 #make7 cd /my/path/where/i/keep/compiled/stuff 8 git clone git://git.videolan.org/ffmpeg.git 9 cd ffmpeg 10 ./configure --enable-gpl --enable-libx264 11 make 10 12 # make install 11 13 # ldconfig 12 14 }}} 13 14 P.S. If you are using Ubuntu, you'll most probably have to use sudo for the last 2 commands, like:15 {{{16 # sudo make install17 # sudo ldconfig18 }}}


