Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Updating FFmpeg and x264
  2. Development of FFmpeg and x264 is active and an occasional update can give you new features and bug fixes. To update FFmpeg and x264 you will need to remove the packages, make distclean, update the source, recompile, and install. To update x264:
  3. Code:
  4. sudo apt-get remove ffmpeg x264 libx264-dev libvpx
  5. cd ~/x264
  6. make distclean
  7. git pull
  8. Now compile x264 as shown earlier in the guide starting with the x264 ./configure line. Now update FFmpeg:
  9. Code:
  10. cd ~/ffmpeg
  11. make distclean
  12. svn update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement