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

From VideoLAN Wiki
Jump to navigation Jump to search
(initial commit)
 
Line 3: Line 3:
 
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
 
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
+
    $ 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.
 
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.
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 <ref>http://www.howtogeek.com/howto/2696/how-to-rip-dvds-with-vlc/</ref>.  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 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.
  
If it doesn't work, it may work better to use dvd://
+
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
 
   $ vlc dvd://d:\@1 --sout "#standard{access=file,mux=ts,dst=dvdout.mpg}" vlc://quit
 
Though dvdsimple seems to work better for me [1]
 
  
 
== See also ==
 
== 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
 
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

Revision as of 18:04, 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.

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

[1] http://www.howtogeek.com/howto/2696/how-to-rip-dvds-with-vlc GUI rip howto