User Tools

Site Tools


dvdavi

This is an old revision of the document!


DVD to avi with multiple audio tracks and subtitles

  • Get chapter information
dvdxchap -t 1 /dev/sr0 > chapters.txt
  • Get subtitles
mencoder dvd://1//dev/sr0 -nosound -ovc frameno -o /dev/null -slang en -vobsubout sub.en
  • Convert subtitles to srt: Use avidemux, works fine.
  • Get the crop values:
mplayer dvd://1//dev/sr0 -vf cropdetect -sb 50000000
  • Write the values down. Ex: -vf crop=704:560:12:6
  • Do a small mencoder test to get the correct aspect ratio after cropping:
mencoder dvd://1//dev/sr0 -vf crop=704:560:12:6 -oac copy -ovc raw -endpos 120 -o movie-cropped.mpg
mplayer -v movie-cropped.mpg | grep -i aspect
  • Example: 1.79:1
  • Encoding first pass:
mencoder dvd://1//dev/sr0 -vf pullup,softskip,crop=704:560:12:6,harddup -nosound  -ovc x264 -x264encopts bitrate=1300:subq=5:bframes=3:b_pyramid=normal:turbo=1:pass=1 -of rawvideo -o movie.264
  • Enconding second pass:
mencoder dvd://1//dev/sr0 -vf pullup,softskip,crop=704:560:12:6,harddup -nosound -ovc x264 -x264encopts bitrate=1100:subq=5:8x8dct:frameref=2:bframes=3:b_pyramid=normal:weight_b:pass=2 -of rawvideo -o movie.264
dvdavi.1329602553.txt.gz · Last modified: 2021/02/01 05:55 (external edit)