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

From VideoLAN Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
{{howto|create a video file from a DVD using VLC}}
 +
 
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)
 
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)
  

Revision as of 23:31, 12 June 2011

This page describes how to create a video file from a DVD using VLC. Other "how to" pages

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]. See also note at bottom. Using the GUI may be easier for if you want to both rip and [transcode] simultaneously, as the above commands only do a raw copy. NB that if you use the GUI you will need to name your output filename with the correct extension for your mux type or VLC will silently ignore your desire to convert, and just display the video instead. Silently, mind you. (If it is working right it won't show you a video by default). You will also need to check the 'no DVD menus' option, which instructs it to use dvdsimple:// instead of dvd:// which loops back to the main menu after playing the title.

If it stops halfway through, cleaning your disc might help. If it still fails half-way through, it may work better to use dvd:// (in the GUI, that's not check 'no DVD menus') instead of dvdsimple:// but this is probably not a good option as it never stops it loops back to the main menu forever so you will have to stop it manually by watching it.

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

It might also help to set the cacheing value either higher or to 0 (in the GUI: under advanced options).

OS X

 $ /Applications/VLC.app/Contents/MacOS/VLC dvdsimple:///dev/disk1@1 --sout #standard{access=file,mux=ts,dst=dvdout.dvdsimple.vlc.mpg}

Further reading

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.

MakeMKV is also good for ripping a DVD or blu-ray to raw mpeg. You can then convert it using handbrake or VLC. VLC is not fine tuned for accurate ripping, though it does pretty well, these other tools may be better.