When I rip DVDs in Linux I normally rip them with meconder from dvd format to a divx. I get rid of menus, alternate audio, subtitles, etc. If you're looking for information on how to rip to a real dvd format then you might try finding info on one of the links. You'll find the way I use menconder bellow. Sometimes when I don't feel like optimizing and I'm lazy I might use dvd::rip. If you're using debian you can download many of these programs from the marillat repostitory. Check out my Debian Tips page.

Links

How I do it using menconder

I use mencoder(mplayer) to play and encode my movies. I rescale the movie to the correct aspect ration so that some broken players don't have to deal with the "scale" variable. I normally get good results with 700MB (1 cd). For large or "complex" movies I use 1400MB (2 cds) to maintain quality.

  1. Watch part of the movie with mplayer, make sure you are getting the audio/chapter right.
    •   mplayer -dvd 1 
        
  2. Extract the movie from the dvd with mencoder
    •   mencoder -dvd 1 -oac copy -ovc copy -o movie-rip.avi
        
  3. Get aspect ratio from movie with mecoder using cropdetect
  4. Calculate the scaling and cropping I want
  5. Encode (mencoder) with some good default options
    •   mecoder -o movie-pass1.avi -oac ...
        
  6. Check movie-pass1, guesstimate the options for pass2 (size, audio)
  7. Encode pass 2 with new options
    •   mecoder -o movie.avi -oac ...
        
  8. Enjoy movie
    •   mplayer -fs movie.avi
        

NKB: Ripping DVD's in Linux (last edited 2006-05-01 02:05:49 by IgnacioSolis)