#!/bin/sh echo "`basename $0`, Paul T.Threshold 2002" DVDOUT=$1 CHAPTER=$2 OPTS=$3 if test "$DVDOUT" = "--help"; then echo "Usage: " echo " `basename $0` \"\"" echo " (opts: -alang en, -vop scale=512:302, -vop scale=480:270, -vop scale=720:404" echo "" exit 0 fi if test "$DVDOUT" = ""; then DVDOUT="DVDOUT.avi" fi if test "$CHAPTER" = ""; then CHAPTER="1" fi if test "$OPTS" = ""; then OPTS="-vop scale 512:302" fi echo "Ripping chapter # $CHAPTER of DVD to output file \"$DVDOUT.avi\"...." sleep 1 mencoder -dvd $CHAPTER -vc mpeg12 -ovc lavc -lavcopts vcodec=mpeg4 -oac mp3lame -o $DVDOUT.avi $3