Difference between revisions of "VLC HowTo/Rip a DVD"

From VideoLAN Wiki
Jump to navigation Jump to search
Line 9: Line 9:
 
Note that the above doesn't do any transcoding on the video stream, it just basically dumps a verbatim copy to your hard drive.
 
Note that the above doesn't do any transcoding on the video stream, it just basically dumps a verbatim copy to your hard drive.
  
You may have some luck ripping the DVD from the GUI, as well, though this is a bit tricky [1].  Using the GUI may be easier for if you want to rip and transcode it to something else at the same time, as the above is just a raw copy.
+
You may have some luck ripping the DVD from [http://www.howtogeek.com/howto/2696/how-to-rip-dvds-with-vlc the GUI], as well, though this is a bit tricky [1].  Using the GUI may be easier for if you want to rip and transcode it to something else at the same time, as the above is just a raw copy.  Sometimes the GUI seems to have bugs.
  
 
If it doesn't work, it may work better to use dvd:// instead of dvdsimple://
 
If it doesn't work, it may work better to use dvd:// instead of dvdsimple://
Line 19: Line 19:
 
http://wiki.videolan.org/WindowsFAQ-1.1.x#Some_DVD_movies_don.27t_work_at_all_or_they_crash.2Ffreeze_to_menu_or_playback
 
http://wiki.videolan.org/WindowsFAQ-1.1.x#Some_DVD_movies_don.27t_work_at_all_or_they_crash.2Ffreeze_to_menu_or_playback
  
[1] http://www.howtogeek.com/howto/2696/how-to-rip-dvds-with-vlc GUI rip howto
+
[http://handbrake.fr Handbrake] is a free user friendly open source tool for ripping DVD's.  Unfortunately it only transcodes from DVD to a file (not a raw rip), but it does it well. It uses VLC by default for ripping if installed on OS X. For windows users handbrake can use VLC's libdvdcss if you [https://forum.handbrake.fr/viewtopic.php?f=11&t=16670#p78021 install it].

Revision as of 18:15, 3 June 2011

Here is an example. You'll need to type this at the command prompt (windows) or terminal (linux), all on one line. You may also need to give the full path to vlc (ie, replace vlc with "C:\Program Files\VideoLAN\vlc\vlc.exe", or wherever you installed vlc)

This is how to rip the "raw mpg" from a DVD, assuming you want to rip your DVD's title "1" to filename dvdout.mpg

   $ vlc dvdsimple://d:\@1 --sout "#standard{access=file,mux=ts,dst=dvdout.mpg}" vlc://quit

the vlc://quit at the end just tells it to start, complete the rip, then exit. You can also add a --qt-start-minimized to that, if desired.

Note that the above doesn't do any transcoding on the video stream, it just basically dumps a verbatim copy to your hard drive.

You may have some luck ripping the DVD from the GUI, as well, though this is a bit tricky [1]. Using the GUI may be easier for if you want to rip and transcode it to something else at the same time, as the above is just a raw copy. Sometimes the GUI seems to have bugs.

If it doesn't work, it may work better to use dvd:// instead of dvdsimple://

  $ vlc dvd://d:\@1 --sout "#standard{access=file,mux=ts,dst=dvdout.mpg}" vlc://quit

See also

http://wiki.videolan.org/WindowsFAQ-1.1.x#Some_DVD_movies_don.27t_work_at_all_or_they_crash.2Ffreeze_to_menu_or_playback

Handbrake is a free user friendly open source tool for ripping DVD's. Unfortunately it only transcodes from DVD to a file (not a raw rip), but it does it well. It uses VLC by default for ripping if installed on OS X. For windows users handbrake can use VLC's libdvdcss if you install it.