X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=rip_dvd.wrap;h=09ba254ffeed64e59387320b41141965d27b64c4;hb=a3b48d5a629b43baf5a894edbddbcd102c7d077b;hp=bb8093c6d9171b438ab318e168033635fe206508;hpb=a0392e5f7d75539a0a6831d88fda15c821507dae;p=rip_dvd%2F.git diff --git a/rip_dvd.wrap b/rip_dvd.wrap index bb8093c..09ba254 100755 --- a/rip_dvd.wrap +++ b/rip_dvd.wrap @@ -16,6 +16,18 @@ if [ -z "$dvdtype" ]; then usage fi +############################################################################## +# Local Machine Settings: +# Sources both the "default" conf file tracked by GIT (rip_dvd.conf.dist) +# and the local conf file created by each local machine (rip_dvd.conf) +# Copy the rip_dvd.conf.dist file to rip_dvd.conf and edit the later. +# This will allow you to override all the default values to meet your needs +# in a way that won't get clobbered when you pull updates from my GIT repo. +############################################################################## +config="${0%/*}/rip_dvd.conf" +[ -e "${config}.dist" ] && . ${config}.dist +[ -e "${config}" ] && . ${config} + ############################################## # get the name of the DVD from the DVD disk dvdname=`volname $dev | awk '{ print $1 }'` @@ -31,7 +43,7 @@ dvdname=${dvdname%.} # remove trailing '.' character # - collection = Only DVD main feature is ripped # - childrens = Only DVD main feature is ripped # - church = Only DVD main feature is ripped -rip_opts="$*" +rip_opts="$* -j 2" if [ "$dvdtype" == "netflix" ]; then echo "-> Ripping Netflix DVD" dest=/myth/video/DVDs/Netflix @@ -44,7 +56,7 @@ elif [ "$dvdtype" == "childrens" ]; then echo "-> Ripping Children's DVD" dest=/myth/video/DVDs/Childrens rip_opts="$rip_opts" -elif [ "$dvdtype" == "childrens" ]; then +elif [ "$dvdtype" == "church" ]; then echo "-> Ripping Church DVD" dest=/myth/video/DVDs/Church rip_opts="$rip_opts"