Advertisement
Guest User

Quickly compile basic FFmpeg

a guest
Dec 9th, 2011
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. # mkdir blah
  2. # cd blah
  3.  
  4. -- libx264 --
  5.  
  6. # git clone git://git.videolan.org/x264.git
  7. # cd x264
  8. # ./configure --enable-static --enable-shared
  9. # make
  10. # make install
  11. # cd ..
  12.  
  13. -- FFmpeg --
  14.  
  15. # git clone git://source.ffmpeg.org/ffmpeg.git
  16. # cd ffmpeg
  17. # ./configure --enable-gpl --enable-nonfree --enable-libx264
  18. # make
  19. # make install
  20. # cd ..
  21.  
  22. -- update libs --
  23. # ldconfig
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement