diff --git a/dvdrip.sh b/dvdrip.sh new file mode 100755 index 0000000..7768256 --- /dev/null +++ b/dvdrip.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +vobcopy -I -i /dev/dvd + +echo " ****" +echo "Enter the name" +read name + +echo " ****" +echo "Enter title number" +read title + +mencoder dvd://"$title" -ovc lavc -af volnorm=1 \ + -alang en -oac mp3lame -lameopts cbr:preset=128 \ + -lavcopts threads=4:vbitrate=1200:v4mv:vhq:vcodec=mpeg4 -vf \ + pp=de,scale=720:-2 -nosub -o "$name.mpg"