Advertisement
shokti

ubuntu 12.04 - install handbrake and dvd essential libraries

Oct 31st, 2012
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. add handbrake repository:
  2. sudo add-apt-repository ppa:stebbins/handbrake-releases
  3.  
  4. update apt database:
  5. sudo apt-get update
  6.  
  7. install handbrake:
  8. sudo apt-get install handbrake-gtk
  9.  
  10. --------------------------------------------------------------------
  11.  
  12. install DVD essential libraries when running DVD players and DVD rippers:
  13. libdvdcss2 - Simple foundation for reading DVDs - runtime libraries.
  14. libdvdnav4 - DVD navigation library.
  15. libdvdread4 - library for reading DVDs.
  16.  
  17. Install the libdvdread4:
  18. sudo apt-get install libdvdread4
  19.  
  20. open a terminal window and execute command below to install libdvdcss2:
  21. sudo /usr/share/doc/libdvdread4/install-css.sh
  22.  
  23. Install the libdvdnav4:
  24. sudo apt-get install libdvdnav4
  25.  
  26. Rebooting may be necessary.
  27.  
  28. --------------------------------------------------------------------
  29.  
  30. you can also use mencoder to rip DVDs into .avi files as follows:
  31. mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate="1200" -vf scale -zoom -xy 640 -oac mp3lame -lameopts br=128 -o /nas/videos/my-movies/example/track2.avi
  32.  
  33. acidRip DVD ripper program use mencoder.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement