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

From VideoLAN Wiki
Jump to navigation Jump to search
m (The Mac command line also needs to quote the braces "{}")
(Correct dvd:/// urls according to current version (on windows))
Line 7: Line 7:
 
This is how to rip the "raw" video from a DVD, assuming you want to rip your DVD's title "1" to filename dvdout.mpg, from drive dvd:\
 
This is how to rip the "raw" video from a DVD, assuming you want to rip your DVD's title "1" to filename dvdout.mpg, from drive dvd:\
  
     $ vlc dvdsimple://d:\@1 --sout "#standard{access=file,mux=ts,dst=dvdout.mpg}" vlc://quit
+
     $ 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 exit after ripping.  You can also add a --qt-start-minimized, if desired.
 
the vlc://quit at the end just tells it to exit after ripping.  You can also add a --qt-start-minimized, if desired.
Line 17: Line 17:
 
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 but loops back to the main menu forever so you will have to stop it manually by monitoring it.  Recommend mplayer's dumpstream in this case.
 
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 but loops back to the main menu forever so you will have to stop it manually by monitoring it.  Recommend mplayer's dumpstream in this case.
  
   $ vlc dvd://d:\@1 --sout "#standard{access=file,mux=ts,dst=dvdout.mpg}" vlc://quit
+
   $ 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).
 
It might also help to set the cacheing value either higher or to 0 (in the GUI: under advanced options).

Revision as of 16:18, 1 November 2012

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

You can use VLC to rip a "raw" video file from a DVD, or you can use VLC to create a condensed "transcoded" video file from a DVD. This page mostly deals with using it to rip a raw video file from the command line.

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" video from a DVD, assuming you want to rip your DVD's title "1" to filename dvdout.mpg, from drive dvd:\

   $ 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 exit after ripping. You can also add a --qt-start-minimized, 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. In comparison with other ripping programs, this is sometimes lacking a few frames from the original (up to 10), but is typically pretty accurate. If you want one that is even more accurate, use mplayer's dumpstream or makemkv.

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 help if you want to both rip and [transcode] simultaneously, as the above commands only do a raw copy. Recommend using handbrake if you want to do transcoding too. 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 request to convert the stream on the DVD, 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 but loops back to the main menu forever so you will have to stop it manually by monitoring it. Recommend mplayer's dumpstream in this case.

  $ 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 example (you may be able to use dvdsimple:///Volumes/volumeName as well).

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

Related

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 and simultaneously transcoding (condensing) the output file. It uses VLC by default for ripping if installed on OS X. For windows users handbrake can also use VLC's libdvdcss if you first install it.

mplayer

Mplayer is another excellent option for ripping a raw mpeg stream from a DVD. See some instructions for it.

makemkv

MakeMKV is also good for ripping DVD or blu-ray to a raw mpeg file. To select specific titles, count down from the top of the checked title options. The first one at the top is "title 1." After ripping, you could then convert it (to condense/transcode it) by using handbrake or VLC.

If you want to convert makemkv's output to an mpeg file (mpeg-ts) then you could use tsmuxer. OS X users will need a special version of tsmuxer, however.

ddrescue and vobcopy

Some DVDs have bad sectors as a copy protection mechanism, which makes some tools choke. However, ddrescue can rip copy-protected DVDs to iso files like this:

 $ sudo umount /dev/disk2
 $ ddrescue /dev/disk2 movie.iso

(Substitute /dev/disk2 for your DVD drive).

Once that's done, eject the DVD and run

 $ open -a finder movie.iso
 $ vobcopy -l

to decrypt the main feature movie.iso into a vob file. Handbrake can then be used to transcode the vob file if desired.

ddrescue and vobcopy can both be installed using macports on OS X.