X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=rip_dvd;h=50bdb22a369d8a3f749659e252abcea0213e1ed1;hb=2ba18926e0e436ac665d5c474503021ee7f3febe;hp=0295e62d98071517f7557a2f57f9c301bff121d8;hpb=0dd2093c203da3a877be5ef0238062a7869dd47a;p=rip_dvd%2F.git diff --git a/rip_dvd b/rip_dvd index 0295e62..50bdb22 100755 --- a/rip_dvd +++ b/rip_dvd @@ -25,20 +25,8 @@ # lookup imdb info/posters for mythvideo: http://www.mythtv.org/wiki/Fill_mythvideo_metadata.pl # -############################################################################## -# 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} - ############################################################################################## -# Command line processing +# Global Variables ############################################################################################## typeset cmd="$0 $*" typeset dvdname="" @@ -52,6 +40,10 @@ typeset SCALE="" typeset CROP="" typeset profile="xvidvhq" typeset extension="" +typeset mailto="" +typeset default_alang="en" +typeset -i default_aid=128 +typeset -i aid_override=-1 typeset -i force_onepass_mode=0 typeset -i eject_disk=1 typeset -i keep_isofile=0 @@ -72,7 +64,41 @@ typeset -i invalid_feature_title=0 typeset -i feature_title_override=0 typeset -i mplayer_dumpstream_incompatibility=0 -while (($#)) && getopts 12mvifkxht:n:d:b:s:t:a:p:e:j: opt "$@" +############################################################################## +# 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" + +# The config file will be searched for in the following location order: +found_config=0 + +# 1) /path/to/rip_dvd/script/rip_dvd.conf.dist +[ -e "${config}.dist" ] && found_config=1 && . "${config}.dist" + +# 2) /path/to/rip_dvd/script/rip_dvd.conf +[ -e "${config}" ] && found_config=1 && . "${config}" + +# 3) /etc/rip_dvd.conf +[ -e "/etc/rip_dvd.conf" ] && found_config=1 && . "/etc/rip_dvd.conf" + +# 4) $PWD/rip_dvd.conf +[ -e "$PWD/rip_dvd.conf" ] && found_config=1 && . "$PWD/rip_dvd.conf" + +# Check to make sure we found the config file +if [ $found_config -eq 0 ]; then + echo "-E- Unable to find the rip_dvd.conf file: $config" + exit 1 +fi + +############################################################################################## +# Command line processing +############################################################################################## +while (($#)) && getopts 12mvifkxht:n:d:b:s:t:a:p:e:j:l: opt "$@" do case $opt in (n) dvdname=$OPTARG;; @@ -92,6 +118,7 @@ do (p) profile=$OPTARG;; (e) extension=$OPTARG;; (j) eject_disk=$OPTARG;; + (l) aid_override=$OPTARG;; (w) set -$opt;; (h) show_usage=1;; (:) echo >&2 "$0: $OPTARG requires a value"; errors=errors+1;; @@ -108,17 +135,16 @@ function usage() { echo >&2 " -d Specify the destination directory to store the ripped DVD to" echo >&2 " -n Specify a path to a DVD folder or file to process:" echo >&2 " 1) If this option is not specified, the DVD will be ripped from $dev" - echo >&2 " 2) If dvdname exists in $tmpdir, it will be ripped as a DVD instead of $dev" - echo >&2 " 3) If dvdname is a full path to a DVD folder, it will be ripped as a DVD instead of $dev" - echo >&2 " 4) If dvdname is a full path to an MPG2 file, it will be ripped as a DVD instead of $dev" - echo >&2 " 5) If dvdname is a full path to an ISO file, it will be ripped as a DVD instead of $dev" + echo >&2 " 2) If dvdname is a full path to a DVD folder, it will be ripped as a DVD instead of $dev" + echo >&2 " 3) If dvdname is a full path to an MPG2 file, it will be ripped as a DVD instead of $dev" + echo >&2 " 4) If dvdname is a full path to an ISO file, it will be ripped as a DVD instead of $dev" echo >&2 " -p Specify which encoding profile to use in -x mode as shown below:" echo >&2 " - xvidvhq = AVI, very high quality encoding, Xvid codec, 2 pass encoding (default)" echo >&2 " - xvidhq = AVI, high quality encoding, Xvid codec, 2 pass encoding" echo >&2 " - xvid = AVI, fast encoding, Xvid codec, 2 pass encoding" - echo >&2 " - mp4vhq = MP4, very high quality encoding, x264 codec, 2 pass encoding" - echo >&2 " - mp4hq = MP4, high quality encoding, x264 codec, 2 pass encoding" - echo >&2 " - mp4 = MP4, fast encoding, x264 codec, 2 pass encoding" + #echo >&2 " - mp4vhq = MP4, very high quality encoding, x264 codec, 2 pass encoding" + #echo >&2 " - mp4hq = MP4, high quality encoding, x264 codec, 2 pass encoding" + #echo >&2 " - mp4 = MP4, fast encoding, x264 codec, 2 pass encoding" echo >&2 " - iphone = MP4, x264 codec, 2 pass encoding, forced 480:320 scaling" echo >&2 " - ipod = MP4, x264 codec, 2 pass encoding, forced 320:240 scaling" echo >&2 " -e Specify a suffix extension to apply to the end of the final image filename (like .xvid, .ipod, etc)" @@ -146,6 +172,7 @@ function usage() { echo >&2 " -k Keep the intermediate files (good for debugging)" echo >&2 " In -x mode, run with this option to keep the original .VOB file" echo >&2 " By default, all intermediary files are deleted. Only the final image is kept" + echo >&2 " -l Specify the audio AID language ID to rip from the source DVD" echo >&2 " -t Specify the main feature title to pull from the DVD (only required if this script can't figure it out)" echo >&2 " -w Set the sh Execute/Verbose flag (causes every command to be echoed)" echo >&2 "" @@ -217,6 +244,7 @@ fi typeset -i ripdvd if [ -z "$dvdname" ]; then + # make sure the DVD device is accessible volname $dev > /dev/null 2>&1 if [ $? != 0 ]; then @@ -226,7 +254,9 @@ if [ -z "$dvdname" ]; then # now capture the volume name from the device dvdname=`volname $dev | awk '{ print $1 }'` ripdvd=1 + else + # check to see if dvdname is a full path to a real directory # if it is, set dvdname and dvdpath appropriately if [ -d "$dvdname" ]; then @@ -276,10 +306,19 @@ else echo "-E- Unsupported file type: $vobfile" exit 1 fi + + # Throw an error if we can't find what the -n option is pointing to + else + echo "-E- Unable to find the directory or file specified by the '-n $dvdname' option. Please make sure the path is valid." + exit 1 fi + + # Set the ripdvd flag to false since we aren't ripping a DVD disk ripdvd=0 - # Since we aren't ripping a DVD disk, don't eject anything + + # Since we aren't ripping a DVD disk, don't eject anything either eject_disk=0 + fi # remove bad characters from the dvdname @@ -395,7 +434,7 @@ function encode_vob_file { if [ "$profile" == "xvid" ] || [ "$profile" == "xvidhq" ] || [ "$profile" == "xvidvhq" ]; then found_profile=1 final_output_file="$dest/$dvdname.avi" - mencoder_general_opts="-quiet $lang_opts $passlogfile_opt" + mencoder_general_opts="$lang_opts $passlogfile_opt" mencoder_output_opts="-ofps 30000/1001 -ffourcc DIVX" mencoder_video_filter_opts="-vf pullup,softskip,hqdn3d=2:1:2$CROP$SCALE" mencoder_video_encoder_opts="-ovc xvid -xvidencopts $pass_opt" @@ -449,10 +488,11 @@ function encode_vob_file { fi # MP4 encoding profiles + # These are currently in BETA. They don't work that great. A new recipe is needed, for the audio. if [ "$profile" == "mp4" ] || [ "$profile" == "mp4hq" ] || [ "$profile" == "mp4vhq" ]; then found_profile=1 final_output_file="$dest/$dvdname.mp4" - mencoder_general_opts="-quiet $lang_opts $passlogfile_opt" + mencoder_general_opts="$lang_opts $passlogfile_opt" mencoder_output_opts="-ofps 30000/1001 -sws 9 -of lavf -lavfopts format=mp4" mencoder_video_filter_opts="-vf harddup$CROP$SCALE"; mencoder_video_encoder_opts="-ovc x264 -x264encopts $pass_opt" @@ -503,13 +543,13 @@ function encode_vob_file { #mencoder_audioch_opts[1]="-af channels=6" #mencoder_audioch_opts[2]="" mencoder_audio_opts="-oac faac -faacopts mpeg=4:object=2:br=$audio_bitrate:raw" - mencoder_audioch_opts[0]="-channels 6 -srate 48000" + mencoder_audioch_opts[0]="-channels 6 -srate 48000 -af volnorm=1" else # These options produce good 2 channel audio for linux and windows (including the internal mythvideo player) #mencoder_audio_opts="-oac mp3lame -lameopts cbr:br=$audio_bitrate" #mencoder_audioch_opts[0]="" mencoder_audio_opts="-oac faac -faacopts mpeg=4:object=2:br=$audio_bitrate:raw" - mencoder_audioch_opts[0]="-channels 2 -srate 48000" + mencoder_audioch_opts[0]="-channels 2 -srate 48000 -af volnorm=1" fi fi @@ -531,7 +571,7 @@ function encode_vob_file { SCALE=",dsize=320:240:0,scale=-8:-8" fi final_output_file="$dest/$dvdname.mp4" - mencoder_general_opts="-quiet $lang_opts $passlogfile_opt" + mencoder_general_opts="$lang_opts $passlogfile_opt" mencoder_output_opts="-ofps 30000/1001 -sws 9 -of lavf -lavfopts format=mp4" mencoder_video_filter_opts="-vf harddup$CROP$SCALE"; mencoder_video_encoder_opts="-ovc x264 -x264encopts $pass_opt" @@ -592,7 +632,7 @@ function encode_vob_file { fi # Concatenate the encode log to our main log file, greping out unwanted lines - cat $encodelog | grep -v "Pos:" >> "$logfile" + cat $encodelog | grep -v "^Pos:" | grep -v "duplicate" >> "$logfile" done } @@ -762,17 +802,22 @@ function get_audio_id_from_iso { # This should be 128. However, if 128 is not there, pick the next one that incrementally is. iso="$1" aidcheck=`tempfile` - aid=128 - mplayer -v -endpos 0 -dvd-device "$iso" dvd://$feature_title > $aidcheck 2>&1 - grep -q "aid: $aid" $aidcheck - while [ $? == 1 ] && [ $aid -lt 159 ]; do - (( aid = aid + 1 )) + aid=$default_aid + alang=$default_alang + if [ $aid_override -lt 0 ]; then + mplayer -v -endpos 0 -dvd-device "$iso" dvd://$feature_title > $aidcheck 2>&1 grep -q "aid: $aid" $aidcheck - done - [[ -e "$aidcheck" ]] && rm -f "$aidcheck" + while [ $? == 1 ] && [ $aid -lt 159 ]; do + (( aid = aid + 1 )) + grep -q "aid: $aid" $aidcheck + done + [[ -e "$aidcheck" ]] && rm -f "$aidcheck" + else + aid=$aid_override + fi echo "-> Setting the audio stream ID to $aid" | tee -a "$logfile" # mencoder default DVD audio track language selection (english) - lang_opts="-aid $aid -alang en" + lang_opts="-aid $aid -alang $alang" } function get_crop_from_iso { @@ -830,17 +875,22 @@ function get_audio_id_from_vob { # This should be 128. However, if 128 is not there, pick the next one that incrementally is. vob="$1" aidcheck=`tempfile` - aid=128 - mplayer -v -endpos 0 "$vob" > $aidcheck 2>&1 - grep -q "Found audio stream: $aid" $aidcheck - while [ $? == 1 ] && [ $aid -lt 159 ]; do - (( aid = aid + 1 )) + aid=$default_aid + alang=$default_alang + if [ $aid_override -lt 0 ]; then + mplayer -v -endpos 0 "$vob" > $aidcheck 2>&1 grep -q "Found audio stream: $aid" $aidcheck - done - [[ -e "$aidcheck" ]] && rm -f "$aidcheck" + while [ $? == 1 ] && [ $aid -lt 159 ]; do + (( aid = aid + 1 )) + grep -q "Found audio stream: $aid" $aidcheck + done + [[ -e "$aidcheck" ]] && rm -f "$aidcheck" + else + aid=$aid_override + fi echo "-> Setting the audio stream ID to $aid" | tee -a "$logfile" # mencoder default DVD audio track language selection (english) - lang_opts="-aid $aid -alang en" + lang_opts="-aid $aid -alang $alang" } function check_vob_for_corrupted_start { @@ -1115,9 +1165,7 @@ function remove_intermediate_dvdbackup_folder { # Make a note of when this DVD rip started date=`date` echo -e "\n$date DVD rip started" >> "$logfile" -echo "cmd: $cmd" >> "$logfile" - -exit +echo "$cmd" >> "$logfile" # Rip the DVD - Mirror Mode if [ $mirror_mode -eq 1 ]; then @@ -1328,4 +1376,4 @@ if [ $mirror_mode -eq 0 ]; then fi -############################################################################################## \ No newline at end of file +##############################################################################################