aa4b13ba6ae64c2dac4186e9b02df8ea85ce0637
[rip_dvd/.git] / rip_dvd
1 #!/bin/bash
2 #
3 # Author: Alan J. Pippin (apippin@pippins.net)
4 # Date: 05/17/2009
5 #
6   REV=2.0
7 #
8 # Description: This script wraps a number of linux utilities to
9 # create a recipe for ripping protected DVDs, circumventing 
10 # ARcoSS and CRC checksum error protection schemes used on many
11 # newer DVDs. Edit as appropriate for your needs. I use this to
12 # backup DVDs I own, and do not condone any other activity it
13 # may be used for.
14 #
15 # Known Issues/Limitations:
16 # - Mirror mode is always done in ISO mode
17 #
18 # Package Dependencies (apt-get install these for example):
19 # lsdvd dvdauthor gddrescue dvdbackup tovid mencoder mplayer genisoimage libdvdcss2
20 #
21 # Specific Executable (program) Dependencies (must be found in $PATH):
22 # volname makexml lsdvd dvdauthor gddrescue dvdbackup mencoder mplayer mkisofs HandBrakeCLI
23 #
24 # Optional Dependencies:
25 # lookup imdb info/posters for mythvideo: http://www.mythtv.org/wiki/Fill_mythvideo_metadata.pl
26 #
27
28 ##############################################################################################
29 # Global Variables
30 ##############################################################################################
31 typeset cmd="$0 $*"
32 typeset dvdname=""
33 typeset debug=""
34 typeset dest=""
35 typeset isofile=""
36 typeset vobfile=""
37 typeset dvdpath=""
38 typeset aspect=""
39 typeset SCALE=""
40 typeset CROP=""
41 typeset profile="xvidhq"
42 typeset extension=""
43 typeset mailto=""
44 typeset encoder=""
45 typeset default_alang="en"
46 typeset track=""
47 typeset drc="0.0"
48 typeset -i default_aid=128
49 typeset -i aid_override=-1
50 typeset -i force_onepass_mode=0
51 typeset -i eject_disk=1
52 typeset -i keep_isofile=0
53 typeset -i keep_vobfile=0
54 typeset -i keep_dvdfolder=0
55 typeset -i keep_intermediate_files=0
56 typeset -i make_final_dest_vob=0
57 typeset -i make_final_dest_iso=0
58 typeset -i make_final_dest_folder=0
59 typeset -i make_final_dest_comp=0
60 typeset -i errors=0
61 typeset -i show_usage=0
62 typeset -i mirror_mode=0
63 typeset -i target_bitrate=2000
64 typeset -i target_size=0
65 typeset -i audio_2ch=0
66 typeset -i audio_6ch=1
67 typeset -i invalid_feature_title=0
68 typeset -i feature_title_override=0
69 typeset -i mplayer_dumpstream_incompatibility=0
70
71 ##############################################################################
72 # Local Machine Settings:
73 # Sources both the "default" conf file tracked by GIT (rip_dvd.conf.dist)
74 # and the local conf file created by each local machine (rip_dvd.conf)
75 # Copy the rip_dvd.conf.dist file to rip_dvd.conf and edit the later.
76 # This will allow you to override all the default values to meet your needs
77 # in a way that won't get clobbered when you pull updates from my GIT repo.
78 ##############################################################################
79 config="${0%/*}/rip_dvd.conf"
80
81 # The config file will be searched for in the following location order:
82 found_config=0
83
84 # 1) /path/to/rip_dvd/script/rip_dvd.conf.dist
85 [ -e "${config}.dist" ] && found_config=1 && . "${config}.dist"
86
87 # 2) /path/to/rip_dvd/script/rip_dvd.conf
88 [ -e "${config}" ] && found_config=1 && . "${config}"
89
90 # 3) /etc/rip_dvd.conf
91 [ -e "/etc/rip_dvd.conf" ] && found_config=1 && . "/etc/rip_dvd.conf"
92
93 # 4) $PWD/rip_dvd.conf
94 [ -e "$PWD/rip_dvd.conf" ] && found_config=1 && . "$PWD/rip_dvd.conf"
95
96 # Check to make sure we found the config file
97 if [ $found_config -eq 0 ]; then
98   echo "-E- Unable to find the rip_dvd.conf file: $config"
99   exit 1
100 fi
101
102 ##############################################################################################
103 # Command line processing
104 ##############################################################################################
105 while (($#)) && getopts 162wmvifkzx:ht:n:d:b:s:t:a:p:e:j:l:r: opt "$@"
106 do
107     case $opt in
108         (n)     dvdname=$OPTARG;;
109         (d)     dest=$OPTARG;;
110         (b)     target_bitrate=$OPTARG;;
111         (s)     target_size=$OPTARG;;
112         (2)     audio_2ch=1;;
113         (6)     audio_6ch=1;;
114         (1)     force_onepass_mode=1;;
115         (v)     make_final_dest_vob=1;;
116         (i)     make_final_dest_iso=1;;
117         (f)     make_final_dest_folder=1;; 
118         (z)     make_final_dest_comp=1;;
119         (e)     encoder=$OPTARG;;
120         (m)     mirror_mode=1;;
121         (k)     keep_intermediate_files=1;;
122         (t)     feature_title_override=$OPTARG;;
123         (a)     aspect=$OPTARG;;
124         (p)     profile=$OPTARG;;
125         (x)     extension=$OPTARG;;
126         (j)     eject_disk=$OPTARG;;
127         (l)     aid_override=$OPTARG;;
128         (r)     drc=$OPTARG;;
129         (w)     set -x;;
130         (h)     show_usage=1;;
131         (:)     echo >&2 "$0: $OPTARG requires a value"; errors=errors+1;;
132         (\?)    echo >&2 "$0: invalid option '$OPTARG'"; errors=errors+1;;
133     esac
134 done
135
136 shift $((OPTIND-1))
137
138 function usage() {
139     echo >&2 "Usage: ${0##*/} -d <destdir> [ <options> ]"
140     echo >&2 "Revision $REV"
141     echo >&2 "Options:"
142     echo >&2 "   -d <destdir>  Specify the destination directory to store the ripped DVD to"
143     echo >&2 "   -n <dvdname>  Specify a path to a DVD folder or file to process:"
144     echo >&2 "                 1) If this option is not specified, the DVD will be ripped from $dev"
145     echo >&2 "                 2) If dvdname is a full path to a DVD folder, it will be ripped as a DVD instead of $dev"
146     echo >&2 "                 3) If dvdname is a full path to an MPG2 file, it will be ripped as a DVD instead of $dev"
147     echo >&2 "                 4) If dvdname is a full path to an ISO file, it will be ripped as a DVD instead of $dev"
148     echo >&2 "                 5) If dvdname is a full path to a VOB file, it will be ripped as a DVD instead of $dev"
149     echo >&2 "   -p <profile>  Specify which encoding profile to use in -w mode as shown below:"
150     echo >&2 "                 Mencoder and Handbrake Encoder Profiles:"
151     echo >&2 "                 - xvidvhq = AVI, very high quality encoding, Xvid codec, 2 pass encoding"
152     echo >&2 "                 - xvidhq = AVI, high quality encoding, Xvid codec, 2 pass encoding (default)"
153     echo >&2 "                 - xvid = AVI, fast encoding, Xvid codec, 2 pass encoding"
154     echo >&2 "                 - iphone = MP4, x264 codec, 2 pass encoding, forced 480:320 scaling"
155     echo >&2 "                 - ipod = MP4, x264 codec, 2 pass encoding, forced 320:240 scaling"
156     echo >&2 "                 Handbrake Only Encoder Profiles:"
157     echo >&2 "                 - mp4vhq = MP4, very high quality encoding, x264 codec, 2 pass encoding"
158     echo >&2 "                 - mp4hq = MP4, high quality encoding, x264 codec, 2 pass encoding"
159     echo >&2 "                 - mp4 = MP4, fast encoding, x264 codec, 2 pass encoding"
160     echo >&2 "                 - hb_<profile> = Any predefined HandBrake profile (run HandBrakeCLI -z and replace spaces with underscores) "
161     echo >&2 "   -x <ext>      Specify a suffix extension to apply to the end of the final image filename (like .xvid, .ipod, etc)"
162     echo >&2 "                 If you run multiple instances of this script ripping the same DVD, you need to specify this option."
163     echo >&2 "   -m            Make a mirror image of the DVD and save it as a DVD ISO file"
164     echo >&2 "                 The default operation is non-mirror mode where only the main"
165     echo >&2 "                 feature title will be ripped."
166     echo >&2 "   -v            Make the final image a DVD VOB file"
167     echo >&2 "   -i            Make the final image a DVD ISO file"
168     echo >&2 "   -f            Make the final image a DVD folder"
169     echo >&2 "   -z            Make the final image a compressed file based on your profile selection and encoder"
170     echo >&2 "   -e <encoder>  Specify the encoder to use to make the compressed file (valid encoders=mencoder|handbrake) (default=handbrake if found)"
171     echo >&2 "                 You must also specify the target size or bitrate using the '-s' or '-b' options with xvid profiles"
172     echo >&2 "   -s <size>     Set the target size of the compressed file in MB (ex: 700, 1000, etc)"
173     echo >&2 "   -b <bitrate>  Set the bitrate desired in the compressed file in kbits/sec (ex: 1500, 2000 (default), etc)"    
174     echo >&2 "   -a <W:H>      Specify the width x height aspect ratio to scale the DVD to (only used in -z mode)"
175     echo >&2 "      <W>        If only the width is given, it will autoset the height to a value which preserves the aspect ratio"
176     echo >&2 "                 The default behavior is autoaspect mode, which preserves the original aspect, with no scaling being done"
177     echo >&2 "   -j <n>        Eject the disk:"
178     echo >&2 "                 - 0 = do not eject the disk"
179     echo >&2 "                 - 1 = eject after the entire script is done (default)"
180     echo >&2 "                 - 2 = eject after the disk is no longer needed (prior to starting the encode process)"
181     echo >&2 "                 The last option will allow you to start ripping another disk while the encoding process is running on a previous"
182     echo >&2 "   -1            Force 1-pass encoding mode across all profiles"
183     echo >&2 "   -2            Use 2 channel MP3 audio encoding when making a compressed file (default is 6 channel AC3)"
184     echo >&2 "   -6            Use 6 channel AC3 audio encoding when making a compressed file (default)"
185     echo >&2 "   -r <x.x>      Apply extra dynamic range compression to the audio, making soft sounds louder. "
186     echo >&2 "                 Range is 1.0 to 4.0 with 1.5 - 2.5 being a useful range (HandBrake Only) (default value is 0.0)"
187     echo >&2 "   -k            Keep the intermediate files (good for debugging)"
188     echo >&2 "                 In -z mode, run with this option to keep the original .VOB file"
189     echo >&2 "                 By default, all intermediary files are deleted. Only the final image is kept"
190     echo >&2 "   -l <aid>      Specify the audio AID language ID to rip from the source DVD"
191     echo >&2 "   -t <title>    Specify the main feature title to pull from the DVD (only required if this script can't figure it out)"
192     echo >&2 "   -w            Set the sh Execute/Verbose flag (causes every command to be echoed)"
193     echo >&2 ""
194     exit 2
195 }
196
197 if (($errors)) || (($show_usage))
198 then
199   usage
200 fi
201
202 # Sanity Check - Command Line Options 
203 if [ "$dest" == "" ]; then
204   echo "-E- You must specify a destination directory with '-d'" | tee -a $logfile
205   usage
206 fi
207
208 if [ $make_final_dest_vob -eq 0 ] && [ $make_final_dest_iso -eq 0 ] && 
209    [ $make_final_dest_folder -eq 0 ] && [ $make_final_dest_comp -eq 0 ] && [ $mirror_mode -eq 0 ]; then
210     # Make our default dest type a compressed movie if the user didn't ask for anything else to be done
211     make_final_dest_comp=1
212 fi
213
214 if ([ $target_size -ne 0 ] || [ "$aspect" != "" ]) && [ $make_final_dest_comp -ne 1 ]; then
215   echo "-E- You can't specify a target_size, or aspect in non compressed file mode. You must specify '-z' when using '-b' or '-s' or '-a'" | tee -a $logfile
216   usage
217 fi
218
219 if [ $target_bitrate -eq 0 ] && [ $target_size -eq 0 ] && [ $make_final_dest_comp -eq 1 ]; then
220   echo "-E- You must specify a bitrate in compressed file mode. You must specify '-b' or '-s' when using '-z'" | tee -a $logfile
221   usage
222 fi
223
224 if [ $mirror_mode -eq 1 ]; then
225   if [ $make_final_dest_vob -eq 1 ] || [ $make_final_dest_iso -eq 1 ] || 
226      [ $make_final_dest_folder -eq 1 ] || [ $make_final_dest_comp -eq 1 ]; then
227     echo "-E- You can't specify '-v' or '-i' or '-f' or '-z' when operating in mirror mode with '-m'" | tee -a $logfile
228     usage
229   fi
230 fi
231
232 # Make handbrake the default encoder if not specified and we can find it
233 if [ -z "$encoder" ]; then
234   encoder="mencoder"; # If we can't find handbrake, set mencoder as the default
235   [[ -x `which $handbrake_xvid` ]] && [[ "$profile" =~ "xvid" ]] && encoder="handbrake";
236   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "mp4" ]] && encoder="handbrake";
237   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "ip" ]] && encoder="handbrake";
238   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "hb" ]] && encoder="handbrake";
239 fi
240
241 # Sanity check the profile selection
242 if [[ "$encoder" == "mencoder" ]]; then
243   [[ "$profile" =~ "mp4" ]] && echo "-E- invalid encoder $encoder selected for mp4 profile: $profile" && exit
244 fi
245
246 if [[ "$encoder" != "mencoder" ]] && [[ "$encoder" != "handbrake" ]]; then
247   echo "-E- Invalid encoder specified: $encoder"
248   exit 1
249 fi
250
251 # If the aspect ratio option was specified, set the scale variable appropriately for mencoder
252 if [ "$aspect" != "" ]; then
253   echo "$aspect" | grep -q "x"
254   if [ $? == 0 ]; then
255     echo "-E- You must specify the aspect option with a value whose format is W:H"
256     exit 1
257   fi
258   echo "$aspect" | grep -q ":"
259   if [ $? != 0 ]; then
260     [ "$encoder" == "mencoder" ] && SCALE=",scale -zoom -sws 9 -xy $aspect"
261     [ "$encoder" == "handbrake" ] && SCALE="-w $aspect"
262   else
263     [ "$encoder" == "mencoder" ] && SCALE=",scale=$aspect"
264     if [ "$encoder" == "handbrake" ]; then
265        WIDTH=`echo "$aspect" | awk -F ':' '{ print $1; }'`
266        HEIGHT=`echo "$aspect" | awk -F ':' '{ print $2; }'`
267        SCALE="-w $WIDTH -l $HEIGHT"
268     fi
269   fi
270 fi
271
272 # Sanity Check - Key executables
273 [[ ! -x `which lsdvd` ]] && echo "-E- missing dependency: lsdvd" && exit
274 [[ ! -x `which volname` ]] && echo "-E- missing dependency: volname" && exit
275 [[ ! -x `which ddrescue` ]] && echo "-E- missing dependency: ddrescue" && exit
276 [[ ! -x `which dvdbackup` ]] && echo "-E- missing dependency: dvdbackup" && exit
277 [[ ! -x `which mencoder` ]] && echo "-E- missing dependency: mencoder" && exit
278 [[ ! -x `which makexml` ]] && echo "-E- missing dependency: makexml" && exit
279 [[ ! -x `which dvdauthor` ]] && echo "-E- missing dependency: dvdauthor" && exit
280 [[ ! -x `which mkisofs` ]] && echo "-E- missing dependency: mkisofs" && exit
281 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "xvid" ]] && [[ ! -x `which $handbrake_xvid` ]] && echo "-E- missing encoder: $handbrake_xvid" && exit
282 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "mp4" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing encoder: $handbrake_mp4" && exit
283 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "ip" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing encoder: $handbrake_mp4" && exit
284 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "hb" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing encoder: $handbrake_mp4" && exit
285 [[ "$encoder" == "handbrake" ]] && [[ ! -x `which ffmpeg` ]] && echo "-E- missing dependency: ffmpeg" && exit
286
287 ##############################################################################################
288
289 typeset -i ripdvd
290 if [ -z "$dvdname" ]; then
291
292   # make sure the DVD device is accessible
293   volname $dev > /dev/null 2>&1
294   if [ $? != 0 ]; then
295     echo "-E- Can't access the DVD device $dev"
296     exit 1
297   fi
298   # now capture the volume name from the device
299   dvdname=`volname $dev | awk '{ print $1 }'`
300   ripdvd=1
301
302 else 
303
304   # check to see if dvdname is a full path to a real directory
305   # if it is, set dvdname and dvdpath appropriately
306   if [ -d "$dvdname" ]; then
307     dvdpath="$dvdname"
308     dvdname=`basename "$dvdname"`
309     keep_dvdfolder=1
310     if [ -z "$dvdname" ]; then
311      echo "-E- Unable to extract dvdname from path: $dvdpath"
312      exit 1
313     fi
314     if [ ! -d "$dvdpath/VIDEO_TS" ]; then
315       echo "-E- You must supply a full path to a valid DVD folder with this option"
316       exit 1
317     fi
318   fi
319
320   # Check to see if dvdname is a full path to a file
321   if [ -f "$dvdname" ]; then
322     valid_file=0
323
324     # check to see if dvdname is a full path to an MPG2 (VOB) file
325     # if it is, set dvdname and vobfile appropriately
326     file "$dvdname" | grep -q "MPEG"
327     if [ $? == 0 ]; then
328       # It is a valid MPEG2 file, now strip the extension off our dvdname
329       vobfile="$dvdname"
330       dvdname=`basename "$dvdname"`
331       dvdname=${dvdname%.[^.]*}
332       keep_vobfile=1
333       valid_file=1
334     fi
335
336     # check to see if dvdname is a full path to an ISO file
337     # if it is, set dvdname and isofile appropriately
338     file "$dvdname" | grep -q -e "ISO" -e "UDF"
339     if [ $? == 0 ]; then
340       # It is a valid ISO file, now strip the extension off our dvdname
341       isofile="$dvdname"
342       dvdname=`basename "$dvdname"`
343       dvdname=${dvdname%.[^.]*}
344       keep_isofile=1
345       valid_file=1
346     fi    
347
348     # check to see if dvdname is a full path to an ISO file
349     # if it is, set dvdname and isofile appropriately
350     file "$dvdname" | grep -q -e "VOB"
351     if [ $? == 0 ]; then
352       # It is a valid VOB file, now strip the extension off our dvdname
353       vobfile="$dvdname"
354       dvdname=`basename "$dvdname"`
355       dvdname=${dvdname%.[^.]*}
356       keep_vobfile=1
357       valid_file=1
358     fi    
359
360     # If we didn't find a handler for the file above, complain
361     if [ $valid_file -eq 0 ]; then
362       echo "-E- Unsupported file type: $vobfile"
363       exit 1
364     fi
365
366   # Throw an error if we can't find what the -n option is pointing to
367   else 
368     echo "-E- Unable to find the directory or file specified by the '-n $dvdname' option. Please make sure the path is valid."
369     exit 1
370   fi
371
372   # Set the ripdvd flag to false since we aren't ripping a DVD disk
373   ripdvd=0
374
375   # Since we aren't ripping a DVD disk, don't eject anything either
376   eject_disk=0
377
378 fi
379
380 # remove bad characters from the dvdname
381 dvdname=${dvdname%.} # remove trailing '.' character
382
383 # add the suffix extension to the end of the dvdname
384 dvdname=$dvdname$extension
385
386 # make a "safe" dvdname (remove special characters)
387 safedvdname=`basename "$dvdname" | sed 's/[ !&*\\$?]/_/g'`
388
389 # Make sure we have a non-empty dvdname
390 if [ -z "$dvdname" ]; then
391   echo "-E- unable to determine dvdname"
392   exit 1
393 fi
394
395 # make sure our vobfile value is set
396 if [ -z "$vobfile" ]; then
397   vobfile="$dest/$dvdname.VOB"
398 fi
399
400 # set up some variables to hold various logfiles
401 logfile="$logdir/$dvdname.log"
402 passlogfile="$tmpdir/$safedvdname.log"
403 ddrescuelog=`tempfile`
404 dvdauthorlog=`tempfile`
405 encodelog=`tempfile`
406 dumplog=`tempfile`
407
408 # create the tmpdir if it doesn't already exist
409 if [ ! -d "$tmpdir" ]; then
410   mkdir -p "$tmpdir"
411   if [ $? != 0 ]; then
412     echo "-E- Unable to create the tmpdir: $tmpdir"
413     exit 1
414   fi
415 fi
416
417 # create the logdir if it doesn't already exist
418 if [ ! -d "$logdir" ]; then
419   mkdir -p "$logdir"
420   if [ $? != 0 ]; then
421     echo "-E- Unable to create the logdir: $logdir"
422     exit 1
423   fi
424 fi
425
426 ##############################################################################################
427 # cleanup functions
428 ##############################################################################################
429 cleanup() { 
430   if [ $keep_intermediate_files -eq 0 ]; then
431     [[ -e "$dvdauthorlog" ]] && rm -f "$dvdauthorlog"
432     [[ -e "$ddrescuelog" ]] && rm -f "$ddrescuelog"
433     [[ -e "$encodelog" ]] && rm -f "$encodelog"
434     [[ -e "$dumplog" ]] && rm -f "$dumplog"
435   else
436     [[ -e "$dvdauthorlog" ]] && echo "-> Keeping dvdauthor log: $dvdauthorlog" | tee -a "$logfile"
437     [[ -e "$ddrescuelog" ]] && echo "-> Keeping ddrescue log: $ddrescuelog" | tee -a "$logfile"
438     [[ -e "$encodelog" ]] && echo "-> Keeping encode log: $encodelog" | tee -a "$logfile"
439     [[ -e "$dumplog" ]] && echo "-> Keeping dump log: $dumplog" | tee -a "$logfile"
440   fi
441   echo ""
442 }
443
444 fatal_and_exit() {
445   if [[ -z "$1" ]]; then
446     msg="-E- control-c killed us"
447   else
448     msg=$1
449   fi
450   echo -e 2>&1 "$msg" | tee -a "$logfile"
451   if [[ -n "$mailto" ]]; then
452     echo -e "$msg" | mailx -s "dvd rip of $dvdname FAILED" "$mailto"
453   fi
454   keep_intermediate_files=1
455   exit 1
456 }
457
458 # Call our cleanup functions on INT and EXIT signals
459 trap fatal_and_exit INT
460 trap cleanup EXIT
461
462 ##############################################################################################
463 # processing functions
464 ##############################################################################################
465
466 # encode the vob file into a compressed file format using handbrake
467 function encode_vob_file_handbrake {
468   
469   # declare some globals
470   typeset handbrake_cli=""
471   typeset handbrake_video_encoder_opts=""
472   typeset filetype=""
473   typeset handbrake_audio_opts=""
474   typeset hb_profile=""
475
476   # Set a variable that we will use later to determine if we found a handler for $profile or not
477   typeset -i found_profile=0    
478
479   # For a given profile, to override the 2 pass behavior to be single pass,
480   # simply set the PASSES variable below to "2" instead of "1 2" inside your profile handler. 
481   # It indicates which PASS numbers to loop over. PASSES="2" means just do pass 2 => single pass mode.
482   PASSES="-2"
483
484   # Set our DRC option
485   DRC="-D $drc"
486
487   # Check the global force_onepass_mode. If it is set, change our variables appropriately
488   # to force 1-pass encoding across all profiles.
489   if [ $force_onepass_mode -eq 1 ]; then
490     PASSES=""
491   fi
492
493   # get our audio track from the VOB file (requires mp4 version of handbrake to extract)
494   get_audio_track_from_vob "$vobfile" "$handbrake_mp4"
495
496   # XVID profile
497   if [[ "$profile" =~ "xvid" ]]; then
498     found_profile=1
499     handbrake_cli="$handbrake_xvid"
500     final_output_file="$dest/$dvdname.avi"
501     filetype="avi"
502
503     # Very High Quality (16fps)
504     if [ "$profile" == "xvidvhq" ]; then
505       handbrake_opts[0]="-f avi"
506       handbrake_opts[1]="-b $target_bitrate"
507       handbrake_opts[2]="-e xvid"
508       handbrake_opts[3]="-T"
509       handbrake_opts[4]="-5"
510       handbrake_opts[5]="-8"
511     fi
512     # High Quality (20fps)
513     if [ "$profile" == "xvidhq" ]; then
514       handbrake_opts[0]="-f avi"
515       handbrake_opts[1]="-b $target_bitrate"
516       handbrake_opts[2]="-e ffmpeg"
517       handbrake_opts[3]="-T"
518       handbrake_opts[4]="-5"
519     fi
520     # Fast (28fps)
521     if [ "$profile" == "xvid" ]; then
522       handbrake_opts[0]="-f avi"
523       handbrake_opts[1]="-b $target_bitrate"
524       handbrake_opts[2]="-e ffmpeg"
525       handbrake_opts[3]="-T"
526     fi
527   fi
528
529   # MP4 profile
530   if [[ "$profile" =~ "mp4" ]]; then
531     found_profile=1
532     handbrake_cli="$handbrake_mp4"
533     final_output_file="$dest/$dvdname.mp4"
534     PASSES=""
535
536     # Very High Quality
537     if [ "$profile" == "mp4vhq" ]; then
538       profile="hb_High_Profile"
539     fi
540     # High Quality
541     if [ "$profile" == "mp4hq" ]; then
542       profile="hb_Normal"
543     fi
544     # Fast
545     if [ "$profile" == "mp4" ]; then
546       profile="hb_Classic"
547     fi
548   fi
549
550   # iphone and ipod MP4 profiles
551   if [ "$profile" == "iphone" ] || [ "$profile" == "ipod" ]; then
552     found_profile=1
553     handbrake_cli="$handbrake_mp4"
554     final_output_file="$dest/$dvdname.mp4"
555     PASSES=""
556
557     # iphone
558     if [ "$profile" == "iphone" ]; then
559       profile="hb_iPhone"
560     fi
561     # ipod
562     if [ "$profile" == "ipod" ]; then
563       profile="hb_iPod"
564     fi
565   fi
566   
567   # Predefined Handbrake Profile Handling
568   if [[ "$profile" =~ "hb" ]]; then
569     found_profile=1
570     handbrake_cli="$handbrake_mp4"
571     final_output_file="$dest/$dvdname.mp4"
572     PASSES=""
573     
574     # extract the HandBrake Profile name from $profile
575     hb_profile=`echo "$profile" | sed 's/hb_//g' | sed 's/_/ /g'`
576   fi
577
578   # Make sure we found a handler for the given profile
579   if [ $found_profile -eq 0 ]; then
580     fatal_and_exit "-E- Unable to find a profile handler for profile: $profile"
581   fi
582
583   # setup our audio option
584   if [ $audio_2ch -eq 1 ] && [ $audio_6ch -eq 1 ]; then
585     handbrake_audio_opts="-E faac,ac3 -6 dpl2,auto"
586   fi
587   if [ $audio_6ch -eq 1 ] && [ $audio_2ch -eq 0 ]; then
588     handbrake_audio_opts="-E ac3 -6 auto"
589   fi
590   if [ $audio_2ch -eq 1 ] && [ $audio_6ch -eq 0 ]; then
591     handbrake_audio_opts="-E faac -6 dpl2"
592   fi
593   if [ -n "$track" ]; then
594     handbrake_audio_opts="$handbrake_audio_opts -a $track"
595   fi
596
597   # Convert our array of opts into a string
598   for OPTS in "${video_encoder_opts[@]}"; do 
599     handbrake_video_encoder_opts="$handbrake_video_encoder_opts:$OPTS"
600   done
601   if [ -n "$handbrake_video_encoder_opts" ]; then
602     handbrake_video_encoder_opts="-x $handbrake_video_encoder_opts"
603   fi
604   for OPTS in "${handbrake_opts[@]}"; do 
605     handbrake_cmd_line_opts="$handbrake_cmd_line_opts $OPTS"
606   done
607
608   # Append "global" command line options
609   handbrake_cmd_line_opts="$handbrake_cmd_line_opts -v 1"
610   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $PASSES"
611   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $DRC"
612   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $SCALE"
613
614   # Execute the handbrake command to encode the video
615   if [ -n "$hb_profile" ]; then
616     echo -e "\n   Encoding: $handbrake_cli -i \"$vobfile\" -o \"$final_output_file\" -Z \"$hb_profile\" $handbrake_cmd_line_opts $handbrake_audio_opts $handbrake_video_encoder_opts >> $encodelog 2>&1" >> "$logfile"
617     $handbrake_cli -i "$vobfile" -o "$final_output_file" -Z "$hb_profile" $handbrake_cmd_line_opts $handbrake_audio_opts $handbrake_video_encoder_opts >> $encodelog 2>&1
618     handbrake_retval=$?
619   else 
620     echo -e "\n   Encoding: $handbrake_cli -i \"$vobfile\" -o \"$final_output_file\" $handbrake_cmd_line_opts $handbrake_audio_opts $handbrake_video_encoder_opts >> $encodelog 2>&1" >> "$logfile"
621     $handbrake_cli -i "$vobfile" -o "$final_output_file" $handbrake_cmd_line_opts $handbrake_audio_opts $handbrake_video_encoder_opts >> $encodelog 2>&1
622     handbrake_retval=$?
623   fi
624   if [ $handbrake_retval != 0 ]; then
625     fatal_and_exit "-E- Unhandled handbrake error"
626   fi
627
628   # Concatenate the encode log to our main log file, greping out unwanted lines
629   cat $encodelog | grep -v "Encoding:" | grep -v "hb_demux_ps" >> "$logfile" 
630   cat $encodelog | grep "Encoding:" | sed 's/\r/\n/g' | grep "Encoding:" | grep "ETA" | head -1 >> "$logfile"
631   cat $encodelog | grep "Encoding:" | sed 's/\r/\n/g' | grep "Encoding:" | grep "ETA" | tail -1 >> "$logfile"
632 }
633
634 # encode the vob file into a compressed file format using mencoder
635 function encode_vob_file_mencoder {
636
637   # Set a variable that we will use later to determine if we found a handler for $profile or not
638   typeset -i found_profile=0
639
640   # For a given profile, to override the 2 pass behavior to be single pass,
641   # simply set the PASSES variable below to "2" instead of "1 2" inside your profile handler. 
642   # It indicates which PASS numbers to loop over. PASSES="2" means just do pass 2 => single pass mode.
643   PASSES="1 2"
644
645   # Declare our default 2 pass variables
646   passlogfile_opt="-passlogfile $passlogfile"
647   pass_opt="pass=%PASS"
648
649   # Check the global force_onepass_mode. If it is set, change our variables appropriately
650   # to force 1-pass encoding across all profiles.
651   if [ $force_onepass_mode -eq 1 ]; then
652     PASSES="2"
653     passlogfile_opt=""
654     pass_opt=""    
655   fi
656
657   # XVID profile
658   if [[ "$profile" =~ "xvid" ]]; then
659     found_profile=1
660     final_output_file="$dest/$dvdname.avi"
661     mencoder_general_opts="$lang_opts $passlogfile_opt"
662     mencoder_output_opts="-ofps 30000/1001 -ffourcc DIVX"
663     mencoder_video_filter_opts="-vf pullup,softskip,hqdn3d=2:1:2$CROP$SCALE"
664     mencoder_video_encoder_opts="-ovc xvid -xvidencopts $pass_opt"
665
666     # Very High Quality (16fps)
667     if [ "$profile" == "xvidvhq" ]; then
668       video_encoder_opts[0]="bitrate=$target_bitrate"
669       video_encoder_opts[1]="threads=$mencoder_threads"
670       video_encoder_opts[2]="chroma_opt"
671       video_encoder_opts[3]="vhq=4"
672       video_encoder_opts[4]="bvhq=1"
673       video_encoder_opts[5]="quant_type=mpeg"
674       video_encoder_opts[6]="autoaspect"
675     fi
676     # High Quality (20fps)
677     if [ "$profile" == "xvidhq" ]; then
678       video_encoder_opts[0]="bitrate=$target_bitrate"
679       video_encoder_opts[1]="threads=$mencoder_threads"
680       video_encoder_opts[2]="chroma_opt"
681       video_encoder_opts[3]="vhq=2"
682       video_encoder_opts[4]="bvhq=1"
683       video_encoder_opts[5]="quant_type=mpeg"
684       video_encoder_opts[6]="autoaspect"
685     fi
686     # Fast (28fps)
687     if [ "$profile" == "xvid" ]; then
688       video_encoder_opts[0]="bitrate=$target_bitrate"
689       video_encoder_opts[1]="threads=$mencoder_threads"
690       video_encoder_opts[2]="vhq=0"
691       video_encoder_opts[3]="turbo"
692       video_encoder_opts[4]="autoaspect"
693     fi
694
695     for OPTS in "${video_encoder_opts[@]}"; do 
696       mencoder_video_encoder_opts="$mencoder_video_encoder_opts:$OPTS"
697     done
698
699     if [ $audio_2ch -eq 0 ]; then
700       # These options produce good 6 channel audio for linux and windows
701       mencoder_audio_opts="-oac copy"
702       # There are 3 different ways to specify 6 channel encoding. We'll try the other ones in order if one of them fails.
703       mencoder_audioch_opts[0]="-channels 6 -af channels=6"
704       mencoder_audioch_opts[1]="-af channels=6"
705       mencoder_audioch_opts[2]=""
706     else
707       # These options produce good 2 channel audio for linux and windows (including the internal mythvideo player)
708       mencoder_audio_opts="-oac mp3lame -lameopts cbr:br=$audio_bitrate"
709       mencoder_audioch_opts[0]=""
710     fi
711  
712   fi
713
714   # iphone and ipod MP4 profiles
715   if [ "$profile" == "iphone" ] || [ "$profile" == "ipod" ]; then
716     found_profile=1
717     if [ "$profile" == "iphone" ]; then
718       # SCALE: 480x320
719       # scale width to 480, set height appropriately, but keep a multiple of 16
720       #SCALE=",scale=480:-10"
721       # scale the video down however far is necessary to fit in 480x320
722       SCALE=",dsize=480:320:0,scale=-8:-8"
723     else
724       # SCALE: 320x240
725       # scale width to 320, set height appropriately, but keep a multiple of 16
726       #SCALE=",scale=320:-10"
727       # scale the video down however far is necessary to fit in 320x240
728       SCALE=",dsize=320:240:0,scale=-8:-8"
729     fi
730     final_output_file="$dest/$dvdname.mp4"
731     mencoder_general_opts="$lang_opts $passlogfile_opt"
732     mencoder_output_opts="-ofps 30000/1001 -sws 9 -of lavf -lavfopts format=mp4"
733     mencoder_video_filter_opts="-vf harddup$CROP$SCALE";
734     mencoder_video_encoder_opts="-ovc x264 -x264encopts $pass_opt"
735     video_encoder_opts[0]="bitrate=$target_bitrate"
736     video_encoder_opts[1]="threads=$mencoder_threads"
737     video_encoder_opts[2]="vbv_maxrate=1500"
738     video_encoder_opts[3]="vbv_bufsize=2000"
739     video_encoder_opts[4]="nocabac"
740     video_encoder_opts[5]="me=umh"
741     video_encoder_opts[6]="subq=6"
742     video_encoder_opts[7]="frameref=6"
743     video_encoder_opts[8]="trellis=1"
744     video_encoder_opts[9]="level_idc=30"
745     video_encoder_opts[10]="global_header"
746     video_encoder_opts[11]="bframes=0"
747     video_encoder_opts[12]="partitions=all"
748     for OPTS in "${video_encoder_opts[@]}"; do 
749       mencoder_video_encoder_opts="$mencoder_video_encoder_opts:$OPTS"
750     done
751
752     mencoder_audio_opts="-oac faac -faacopts mpeg=4:object=2:br=$audio_bitrate:raw"
753     mencoder_audioch_opts[0]="-channels 2 -srate 48000"
754   fi
755
756   if [ $found_profile -eq 0 ]; then
757     fatal_and_exit "-E- Unable to find a profile handler for profile: $profile"
758   fi
759
760   # Do not edit this line. $mencoder_video_encoder_opts must be last
761   mencoder_opts="$mencoder_general_opts $mencoder_output_opts $mencoder_audio_opts $mencoder_video_filter_opts $mencoder_video_encoder_opts"
762   mencoder_retval=0
763
764   for PASS in $PASSES
765   do 
766     # Set some options based on which pass we are in
767     mencoder_opts_for_pass=$(echo "$mencoder_opts" | sed "s,%PASS,$PASS,g")
768     [ $PASS -eq 1 ] && mencoder_opts_for_pass="$mencoder_opts_for_pass:turbo"
769     [ $PASS -eq 1 ] && output_file="/dev/null"
770     [ $PASS -eq 2 ] && output_file="$final_output_file"
771   
772     # It's possible that the audio channel encoding may not work. Cycle through all our different audioch_opts until we find one that works.
773     for CH_OPTS in "${mencoder_audioch_opts[@]}"; 
774     do
775       echo -e "   Encoding pass $PASS"
776       echo -e "\n   Encoding pass $PASS: mencoder $CH_OPTS $mencoder_opts_for_pass \"$vobfile\" -o \"$output_file\" >> $encodelog 2>&1" >> "$logfile"
777       mencoder $CH_OPTS $mencoder_opts_for_pass "$vobfile" -o "$output_file" > $encodelog 2>&1
778       mencoder_retval=$? 
779       grep -q "\[channels\] Invalid" $encodelog
780       if [ $? != 0 ]; then          
781         break;
782       else
783         echo -e "\n-W- Audio channel encoding error. Falling back to next audio channel encoding scheme." >> "$logfile"
784       fi
785     done
786       
787     if [ $mencoder_retval != 0 ]; then
788       fatal_and_exit "-E- Unhandled mencoder error"
789     fi
790
791     # Concatenate the encode log to our main log file, greping out unwanted lines
792     cat $encodelog | grep -v "^Pos:" | grep -v "duplicate" >> "$logfile"
793
794   done
795 }
796
797 function make_dvd_iso_image {
798
799   isofile="$1"
800
801   # check to see if we have a dvdpath to rip from instead of $dev
802   if [ -z "$dvdpath" ]; then
803     # load the CSS codes in the DVD drive 
804     lsdvd $dev >> "$logfile"
805     if [ $? != 0 ]; then
806       fatal_and_exit "-E- lsdvd $dev failed" 
807     fi
808
809     # read the DVD, ignoring/skipping CRC errors
810     ddrescue -n -b 2048 $dev "$isofile" "$ddrescuelog"
811     if [ $? != 0 ]; then
812       fatal_and_exit "-E- ddrescue -n -b 2048 $dev \"$isofile\" failed"
813     fi
814     cat "$ddrescuelog" >> "$logfile"
815   else
816     # rip from a path instead
817     make_dvd_iso_image_from_folder "$dvdpath" "$isofile" 1
818   fi
819 }
820
821 function make_dvd_iso_image_from_folder {
822   
823   src="$1"
824   dst="$2"
825   handle_error=$3
826   
827   echo "-> Creating ISO image of DVD video: $src -> $dst" | tee -a "$logfile"
828
829   # make an iso image out of our directory
830   echo "   mkisofs -dvd-video \"$src\" 2>> \"$dumplog\" | dd of=\"$dst\" obs=32k seek=0 > /dev/null 2>> $dumplog" >> "$logfile"
831   mkisofs -dvd-video "$src" 2>> "$dumplog" | dd of="$dst" obs=32k seek=0 > /dev/null 2>> "$dumplog"
832
833   # set the audio languages from the iso if it exists and is non-zero in size
834   if [ -s "$dst" ]; then
835     get_feature_title "$dst"
836     get_audio_id_from_iso "$dst"
837   fi
838
839   # make sure we were able to create the iso image from the folder given to us
840   if [ ! -s "$dst" ] && [ $handle_error -eq 1 ]; then
841     echo "-> Unable to make an iso image from the DVD folder: $dvdpath"
842     echo "   Falling back to mplayer to create a main feature VOB from the folder instead: $dvdpath"
843     # remove the bad iso file
844     [[ -e "$dst" ]] && rm -f "$dst"
845     # get the feature title from the DVD folder
846     get_feature_title "$dvdpath"
847     # create our main VOB file from the ISO
848     create_main_vob_with_mplayer "$dvdpath" 
849     # get our audio id from the VOB file
850     get_audio_id_from_vob "$vobfile"
851   fi
852 }
853
854 function make_dvdbackup_folder_image {
855   # extract the feature title from the DVD image
856   echo "-> Extracting feature title using dvdbackup" | tee -a "$logfile"
857   [[ -d "$tmpdir/$dvdname" ]] && rm -rf "$tmpdir/$dvdname"
858   dvdbackup -F -i "$isofile" -o "$tmpdir" >> "$logfile"
859   if [ $? != 0 ]; then
860     fatal_and_exit '-E- dvdbackup -F -i "$isofile" -o "$tmpdir" failed'
861   fi
862 }
863
864 function make_dvdauthor_folder_image {
865   # create a new DVD video of the feature title
866   echo "-> Creating DVD video $dest/$dvdname" | tee -a "$logfile"
867   [[ -d "$dest/$dvdname" ]] && rm -rf "$dest/$dvdname"
868   dvdauthor -o "$dest/$dvdname" -x dvd.xml > $dvdauthorlog 2>&1
869   cat $dvdauthorlog | grep -v "VOBU" >> "$logfile"
870
871   # There is a chance that dvdauthor won't like some of the VOBs.
872   # We can't tell ahead of time which ones it will choke on. 
873   # So, we need to run it over and over again until it can process
874   # all the VOBs. If it can't handle one of them, run it through
875   # mencoder to fix it and try again. These errors are typically
876   # present due to the copy protection that ddrescue removed.
877   grep -q "SCR moves" $dvdauthorlog
878   while [ $? == 0 ]; do
879     # fix bad vobs that get the "SCR moves backwards" error:
880     #  STAT: Processing VTS_01_0.VOB...
881     #  ERR:  SCR moves backwards, remultiplex input.
882     badvob=`grep -v "^WARN:" $dvdauthorlog | grep -B 1 "SCR moves" | grep "Processing" | awk '{ print $3 }' | sed -e 's/\.\.\.//'`
883     if [[ ! -f "$badvob" ]]; then
884       fatal_and_exit "-E- Found a bad VOB, but could not extract it's name properly: $badvob"
885     fi
886     echo "-> Fixing SCR errors in DVD video file $badvob" | tee -a "$logfile"
887     cat $badvob | mencoder $lang_opts -quiet -of mpeg -mpegopts format=dvd -oac copy -ovc copy - -o $badvob.fixed >> "$logfile" 2>&1
888     mv -f $badvob.fixed $badvob
889     echo "-> Creating DVD video $dest/$dvdname"
890     dvdauthor -o "$dest/$dvdname" -x dvd.xml > $dvdauthorlog 2>&1
891     cat $dvdauthorlog | grep -v "VOBU" >> "$logfile"
892     grep -q "SCR moves" $dvdauthorlog
893   done
894 }
895
896 function get_feature_title {
897   source="$1"
898   # if a feature title was given on the command line, use it
899   if [ $feature_title_override -ne 0 ]; then
900     feature_title=$feature_title_override
901     return 0
902   fi
903   # otherwise, use lsdvd to figure it out
904   if [ $ripdvd -eq 1 ]; then
905     feature_title=`lsdvd $dev | awk '/Longest/ { print $NF }'`
906   else 
907     feature_title=`lsdvd "$source" 2>/dev/null | awk '/Longest/ { print $NF }'`
908   fi
909 }
910
911 function create_main_vob_with_cat {
912   # cd to the feature title DVD folder
913   pushd "$tmpdir/$dvdname/VIDEO_TS" > /dev/null 2>&1
914   if [ $? != 0 ]; then
915     fatal_and_exit "-E- Unable to cd to $tmpdir/$dvdname/VIDEO_TS"
916   fi
917
918   # concatenate all the VOBs together into 1 giant VOB
919   vobs=`/bin/ls -1 VTS*.VOB | grep -v "0.VOB" | tr '\n' ' '`
920   cat $vobs > "$tmpdir/$dvdname.VOB"
921
922   # cd back to the dir we started from
923   popd > /dev/null 2>&1
924 }
925
926 function create_main_vob_with_mplayer {
927
928   # argument processing  
929   source="$1"
930   remove_dumplog=$2
931
932   # make sure we have a valid feature title
933   if [ $invalid_feature_title -eq 1 ] && [ $feature_title_override -eq 0 ]; then
934     fatal_and_exit "-E- You must have a valid feature title to get the VOB via mplayer dumpstream. We can't determine the feature title for this DVD."
935   fi
936
937   # check to make sure we didn't detect an mplayer dumpstream incompatibility earlier
938   if [ $mplayer_dumpstream_incompatibility -eq 1 ]; then
939     msg="-E- We detected an mplayer dumpstream incompatibility earlier."
940     msg="$msg We also detected another condition that requires us to use dumpstream. "
941     msg="$msg\n    Unable to rip this DVD in the mode you requested."
942     fatal_and_exit "$msg"
943   fi
944
945   # use mplayer to create the main VOB file
946   echo "-> Using mplayer to dump the DVD feature title $feature_title to a VOB file directly: $vobfile" | tee -a "$logfile"
947   echo "   mplayer $lang_opts -dumpstream -dumpfile \"$vobfile\" -dvd-device \"$source\" dvd://$feature_title > $dumplog 2>&1" >> "$logfile"
948   mplayer $lang_opts -dumpstream -dumpfile "$vobfile" -dvd-device "$source" dvd://$feature_title > $dumplog 2>&1
949   if [ $? != 0 ]; then
950     cat $dumplog | grep -v "^A:" >> "$logfile"
951     fatal_and_exit "-E- Mplayer Failed"
952   fi
953   cat $dumplog | grep -v "^A:" >> "$logfile"
954   [[ -e "$dumplog" ]] && [[ $remove_dumplog -eq 1 ]] && rm -f $dumplog
955 }
956
957 function get_audio_id_from_iso {
958   # Adjust our audio ID to find the english audio stream
959   # This should be 128. However, if 128 is not there, pick the next one that incrementally is.
960   iso="$1"
961   aidcheck=`tempfile`
962   aid=$default_aid
963   alang=$default_alang
964   if [ $aid_override -lt 0 ]; then 
965     mplayer -v -endpos 0 -dvd-device "$iso" dvd://$feature_title > $aidcheck 2>&1
966     grep -q "aid: $aid" $aidcheck
967     while [ $? == 1 ] && [ $aid -lt 159 ]; do
968       (( aid = aid + 1 ))
969       grep -q "aid: $aid" $aidcheck
970     done
971     [[ -e "$aidcheck" ]] && rm -f "$aidcheck"
972   else
973     aid=$aid_override
974   fi
975   echo "-> Setting the audio stream ID to $aid" | tee -a "$logfile"
976   # mencoder default DVD audio track language selection (english)
977   lang_opts="-aid $aid -alang $alang"
978 }
979
980 function get_crop_from_iso { 
981   FRAMES=10000
982   echo "-> Detecting black frame border crop value from ISO file"
983   echo "   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark -dvd-device \"$isofile\" dvd://$feature_title > $dumplog 2>&1" >> "$logfile"
984   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark -dvd-device "$isofile" dvd://$feature_title > $dumplog 2>&1
985   [[ -e "md5sums" ]] && rm -f "md5sums"
986   CROP=`cat $dumplog | grep CROP | tail -1`
987   echo "   Found crop value of $CROP" >> "$logfile"
988   CROP=${CROP#* crop=}
989   CROP=${CROP%%\).*}
990   typeset -i CROPCHECK
991   CROPCHECK=`echo "$CROP" | awk -F ':' '{ print $1 }'`
992   echo "   Final crop value of $CROP with cropcheck value of $CROPCHECK" >> "$logfile"
993   if [ -z "$CROP" ]; then
994     echo "-W- Unable to extract CROP value from iso: $isofile" | tee -a "$logfile"
995     return
996   fi
997   if [ $CROPCHECK -lt 0 ]; then 
998     CROP=""
999   else 
1000     CROP=",crop=$CROP"
1001   fi
1002   echo "   Setting mencoder crop filter to: $CROP"
1003 }
1004
1005 function get_crop_from_vob { 
1006   FRAMES=10000
1007   echo "-> Detecting black frame border crop value from VOB file"
1008   echo "   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark \"$vobfile\" > $dumplog 2>&1" >> "$logfile"
1009   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark "$vobfile" > $dumplog 2>&1
1010   [[ -e "md5sums" ]] && rm -f "md5sums"
1011   CROP=`cat $dumplog | grep CROP | tail -1`
1012   echo "   Found crop value of $CROP" >> "$logfile"
1013   CROP=${CROP#* crop=}
1014   CROP=${CROP%%\).*}
1015   typeset -i CROPCHECK
1016   CROPCHECK=`echo "$CROP" | awk -F ':' '{ print $1 }'`
1017   echo "   Final crop value of $CROP with cropcheck value of $CROPCHECK" >> "$logfile"
1018   if [ -z "$CROP" ]; then
1019     echo "-W- Unable to extract CROP value from iso: $isofile" | tee -a "$logfile"
1020     return
1021   fi
1022   if [ $CROPCHECK -lt 0 ]; then 
1023     CROP=""
1024   else 
1025     CROP=",crop=$CROP"
1026   fi
1027   echo "   Setting mencoder crop filter to: $CROP"
1028 }
1029
1030 function get_audio_track_from_vob {
1031   # Adjust our audio ID to find the english audio stream
1032   # This should be 128. However, if 128 is not there, pick the next one that incrementally is.
1033   vob="$1"
1034   handbrake_cli="$2"
1035   aidcheck=`tempfile`
1036   aid=$default_aid
1037   alang=$default_alang
1038   if [ $aid_override -lt 0 ]; then 
1039     mplayer -v -endpos 0 "$vob" > $aidcheck 2>&1
1040     grep -q "Found audio stream: $aid" $aidcheck
1041     while [ $? == 1 ] && [ $aid -lt 159 ]; do
1042       (( aid = aid + 1 ))
1043       grep -q "Found audio stream: $aid" $aidcheck
1044     done
1045     [[ -e "$aidcheck" ]] && rm -f "$aidcheck"
1046   else 
1047     aid=$aid_override
1048   fi
1049   # Now that we've found the right audio id, find the corresponding audio track in HandBrake
1050
1051   # convert the aid we found into hex
1052   aid_hex=`echo "obase=16; $aid" | bc`
1053   
1054   # extract the audio streams in the vob
1055   #ffmpeg -i "$vob" > $aidcheck 2>&1
1056   $handbrake_cli --stop-at 0 -i "$vob" -o /dev/null -v 100 > $aidcheck 2>&1
1057   
1058   # find the stream that matches our aid
1059   #stream=`grep "Stream.*\[0x$aid_hex\]" $aidcheck`
1060   stream=`grep "scan: audio" $aidcheck | grep -n "" | grep "scan: audio 0x$aid_hex"`
1061  
1062   # extract the track number that handbrake uses
1063   #track=`expr match "$stream" '.*#[0-9]\.\([0-9]*\)'`
1064   track=`expr match "$stream" '^\([0-9]*\):'`
1065
1066   if [ -n "$track" ]; then   
1067     echo "-> Setting the audio ID to $aid. Setting the audio track to $track." | tee -a "$logfile"
1068   fi
1069 }
1070
1071 function get_audio_id_from_vob {
1072   # Adjust our audio ID to find the english audio stream
1073   # This should be 128. However, if 128 is not there, pick the next one that incrementally is.
1074   vob="$1"
1075   aidcheck=`tempfile`
1076   aid=$default_aid
1077   alang=$default_alang
1078   if [ $aid_override -lt 0 ]; then 
1079     mplayer -v -endpos 0 "$vob" > $aidcheck 2>&1
1080     grep -q "Found audio stream: $aid" $aidcheck
1081     while [ $? == 1 ] && [ $aid -lt 159 ]; do
1082       (( aid = aid + 1 ))
1083       grep -q "Found audio stream: $aid" $aidcheck
1084     done
1085     [[ -e "$aidcheck" ]] && rm -f "$aidcheck"
1086   else 
1087     aid=$aid_override
1088   fi
1089   echo "-> Setting the audio stream ID to $aid" | tee -a "$logfile"
1090   # mencoder default DVD audio track language selection (english)
1091   lang_opts="-aid $aid -alang $alang"
1092 }
1093
1094 function check_vob_for_corrupted_start {
1095   # check to see if the beginning of the DVD has a form of copy protection
1096   # where they have deliberately broken the first X number of frames of the DVD.
1097   # If we don't skip these, our resulting VOB file will not play.
1098   badvobcheck=`tempfile`
1099   endpos=360
1100   skip=0
1101   mencoder -ss $skip -endpos $endpos $lang_opts -of mpeg -mpegopts format=dvd:tsaf -oac copy -ovc copy "$tmpdir/$dvdname.VOB" -o /dev/null > $badvobcheck 2>&1
1102   if [ $? != 0 ]; then
1103     fatal_and_exit "-E- Mencoder Failed"
1104   fi
1105   grep "Writing header" -A `wc $badvobcheck | awk '{ print $1 }'` $badvobcheck | grep -q "Too many video packets in the buffer"
1106   while [ $? == 0 ] && [ $skip -lt $endpos ]; do
1107     (( skip = skip + 5 ))
1108     echo "-> Bad VOB copy protection detected. Trying new skip value of $skip" | tee -a "$logfile"
1109     mencoder -ss $skip -endpos $endpos $lang_opts -of mpeg -mpegopts format=dvd:tsaf -oac copy -ovc copy "$tmpdir/$dvdname.VOB" -o /dev/null > $badvobcheck 2>&1
1110     if [ $? != 0 ]; then
1111       fatal_and_exit "-E- Mencoder Failed"
1112     fi
1113     grep "Writing header" -A `wc $badvobcheck | awk '{ print $1 }'` $badvobcheck | grep -q "Too many video packets in the buffer"
1114   done
1115   [[ -e "$badvobcheck" ]] && rm -f "$badvobcheck";
1116
1117   # cat the giant VOB into mencoder to create a playable VOB file
1118   cat "$tmpdir/$dvdname.VOB" | mencoder -ss $skip -quiet $lang_opts -of mpeg -mpegopts format=dvd:tsaf -oac copy -ovc copy - -o "$vobfile" >> "$logfile" 2>&1
1119   if [ $? != 0 ]; then
1120     fatal_and_exit "-E- Mencoder Failed"
1121   fi
1122 }
1123
1124 function check_vob_for_completeness {
1125   # check to make sure we got out a complete VOB.
1126   # there is another kind of copy protection where the VOB's may
1127   # have "MPG EOF" frames in the middle of the stream. 
1128   # this causes mencoder to not process the entire VOB, and exit without any errors.
1129   # detect this by seeing how much smaller the dst vob is from the src vob.
1130   MAX_FILESIZE_DELTA_PERCENT=70
1131   SRC_VOB_FILESIZE=$(stat -c%s "$tmpdir/$dvdname.VOB")
1132   DST_VOB_FILESIZE=$(stat -c%s "$vobfile")
1133   FILESIZE_DELTA=`echo "scale=2; $DST_VOB_FILESIZE / $SRC_VOB_FILESIZE * 100" | bc | awk -F '.' '{ print $1 }'`
1134   if [ $FILESIZE_DELTA -lt $MAX_FILESIZE_DELTA_PERCENT ]; then
1135     # Try one other way to get the VOB using mplayer directly to rip the feature titleset.
1136     echo "-> Detected bad VOB size copy protection after processing concatenated VOB file." | tee -a "$logfile"
1137     create_main_vob_with_mplayer "$isofile"
1138     [[ -e "$dumplog" ]] && rm -f $dumplog
1139     DST_VOB_FILESIZE=$(stat -c%s "$vobfile")
1140     FILESIZE_DELTA=`echo "scale=2; $DST_VOB_FILESIZE / $SRC_VOB_FILESIZE * 100" | bc | awk -F '.' '{ print $1 }'`
1141     if [ $FILESIZE_DELTA -lt $MAX_FILESIZE_DELTA_PERCENT ]; then
1142       fatal_and_exit "-E- This DVD has a copy protection scheme we can't work around. Sorry.\n    I recommend using another ripping mode like '-m' or '-i'"
1143     fi
1144   fi
1145 }
1146
1147 function check_vob_for_too_many_video_packets {
1148   # If our earlier algorithm to work around this failed, throw an error.
1149   # check to see if this DVD has a protection scheme we don't know how to work around
1150   # when I tried to burn the CARS DVD for example, you can't play the resulting VOB file.
1151   # for some reason, the video is black, while the audio rolls, then the video finally comes
1152   # in, but it is WAY off the audio. This appears to be due to some bad frames at the beginning of 
1153   # the 1st VOB. Until I figure out how to work around this, detect it, and error out.
1154   # instead of pulling the image from the disk again, you can pull it directly from the iso: -dvd-device $iso_path
1155   grep -q "Too many video packets in the buffer:" "$logfile"
1156   if [ $? == 0 ]; then
1157     # Try one other way to get the VOB using mplayer directly to rip the feature titleset.
1158     echo "-> Detected corrupt audio stream copy protection after processing concatenated VOB file." | tee -a "$logfile"
1159     create_main_vob_with_mplayer "$isofile"
1160     grep -q "Too many video packets in the buffer:" $dumplog
1161     if [ $? == 0 ]; then
1162       [[ -e "$dumplog" ]] && rm -f $dumplog
1163       fatal_and_exit "-E- This DVD has a copy protection scheme we can't work around. Sorry.\n   I recommend using another ripping mode like '-m' or '-i'"
1164     fi
1165     [[ -e "$dumplog" ]] && rm -f $dumplog
1166   fi
1167 }
1168
1169 function check_vob_for_a52_crc_errors {
1170   # Let's see if we can playback our newly created VOB file without any errors.
1171   # if there are issues, let's detect them now, and try to recreate the VOB
1172   # there are some forms of copy protection that have missed above, that evidence
1173   # themselves when we try to playback the VOB file. This was added to deal with
1174   # the "a52: CRC check failed" copy protection scheme.
1175   MAX_ERRORS=10
1176   ENDPOS=120
1177   echo "-> Checking for a52 audio stream CRC errors" | tee -a "$logfile"
1178   mplayer -endpos $ENDPOS -ao null -vo null "$vobfile" > $dumplog 2>&1
1179   cat $dumplog | grep -v "^A:" >> "$logfile"
1180   errors=`grep "a52: CRC check failed" $dumplog | wc | awk '{ print $1 }'`
1181   if [ $errors -gt $MAX_ERRORS ]; then
1182     echo "-> Detected a52 audio stream CRC errors copy protection after processing concatenated VOB file." | tee -a "$logfile"
1183     create_main_vob_with_mplayer "$isofile"
1184     echo "-> Checking for a52 audio stream CRC errors" | tee -a "$logfile"
1185     mplayer -endpos $ENDPOS -ao null -vo null "$vobfile" > $dumplog 2>&1
1186     if [ $? != 0 ]; then
1187       cat $dumplog | grep -v "^A:" >> "$logfile"
1188       fatal_and_exit "-E- Mplayer Failed"
1189     fi
1190     cat $dumplog | grep -v "^A:" >> "$logfile"
1191     errors=`grep "a52: CRC check failed" $dumplog | wc | awk '{ print $1 }'`
1192     if [ $errors -gt $MAX_ERRORS ]; then
1193       fatal_and_exit "-E- This DVD has a copy protection scheme we can't work around. Sorry.\n   I recommend using another ripping mode like '-m' or '-i'"
1194     fi
1195   fi
1196   [[ -e "$dumplog" ]] && rm -f $dumplog
1197 }
1198
1199 function calculate_bitrate_from_target_size {
1200   # determine what our bitrate needs to be if a target size was specified instead
1201   if [ $target_size -ne 0 ]; then
1202     vob_length=`mplayer -identify -v "$vobfile" -endpos 0 2>&1 | grep ID_LENGTH | awk -F '=' '{ print $2 }' | awk -F '.' '{ print $1 }'`
1203     ((target_bitrate = (target_size * 1024 * 8) / vob_length ))
1204     echo "   With a given target size of $target_size MB, the estimated bit rate will need to be $target_bitrate kbits/sec"
1205   fi
1206 }
1207
1208 function create_dvdauthor_dvd_xml_file {
1209   # make a dvdauthor xml menu file to create a valid DVD video from 
1210   # this script does a good job, but we'll still need to clean it up a bit after it runs
1211   echo "-> Creating dvdauthor XML menu file" | tee -a "$logfile"
1212   makexml -overwrite -dvd *.VOB -out dvd >> "$logfile" 2>&1
1213   if [ $? != 0 ]; then
1214     fatal_and_exit '-E- makexml -dvd *.VOB -out dvd failed'
1215   fi
1216
1217   # replace the first line of the xml file to remove the bad dest path
1218   awk -v line=1 -v new_content="<dvdauthor>" '{
1219     if (NR == line) {
1220       print new_content;
1221     } else {
1222       print $0;
1223     }
1224   }' dvd.xml > dvd.xml.new
1225   mv -f dvd.xml.new dvd.xml
1226   if [ $? != 0 ]; then
1227     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1228   fi
1229
1230   # remove the "<video " property line from the xml file
1231   cat dvd.xml | grep -v "<video" > dvd.xml.new
1232   mv -f dvd.xml.new dvd.xml
1233   if [ $? != 0 ]; then
1234     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1235   fi
1236   
1237   # remove the extra <pgc>..</pgc> pairs
1238   cat dvd.xml | awk 'BEGIN {x=1}
1239   {
1240     if ($0~"</pgc>") {x=0}
1241     if (x==1) {print $0}
1242     if ($0~"<pgc>") {x=1}
1243   }' > dvd.xml.new
1244   echo -e "</pgc>\n</titles>\n</titleset>\n</dvdauthor>" >> dvd.xml.new
1245   mv -f dvd.xml.new dvd.xml
1246   if [ $? != 0 ]; then
1247     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1248   fi
1249
1250   # remove the VTS_*_0.VOB file as this is just the main menu video clip
1251   cat dvd.xml | grep -v "VTS_.*_0.VOB" > dvd.xml.new
1252   mv -f dvd.xml.new dvd.xml
1253   if [ $? != 0 ]; then
1254     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1255   fi
1256 }
1257
1258 function check_for_mplayer_dumpstream_incompatibility {
1259
1260   echo "-> Checking for mplayer dumpstream incompatibilities" | tee -a "$logfile"
1261
1262   if [ ! -e "$vobfile" ]; then
1263     # mplayer dumpstream does not work on DVDs that obscure the feature title.
1264     # A DVD that has 99 titles, where the longest title isn't the main feature
1265     # breaks mplayer dumpstream. We have to fallback to using dvdbackup to figure
1266     # out what the feature title is. This script will run through that flow if we
1267     # set use_mplayer_dumpstream to 0. Check for this here.
1268     if [ $ripdvd -eq 1 ]; then
1269       lsdvd $dev | grep -q "Title: 99"
1270     else
1271       lsdvd "$isofile" | grep -q "Title: 99"
1272     fi
1273     # If we have 99 titles and a feature title wasn't given on the command line, switch modes.
1274     if [ $? == 0 ] && [ $feature_title_override -eq 0 ]; then
1275       if [ $trust_feature_title_autodetect_when_uncertain -eq 0 ]; then
1276         echo "-E- Unable to determine the feature title due to the 99 title copy protection scheme" | tee -a "$logfile"
1277         echo "    You will need to determine this yourself and rerun the script with the -t option" | tee -a "$logfile"
1278         echo "    You can google this DVD to find out what it's feature title is, or you can play it in a conventional DVD player to find it." | tee -a "$logfile"
1279         invalid_feature_title=1
1280       else 
1281         echo "    Falling back to non mplayer dumpstream methods to copy the DVD" | tee -a "$logfile"
1282         echo "-W- We still may not be able to autodetect the right feature title" | tee -a "$logfile"
1283         echo "    You may need to determine this yourself and rerun the script with the -t option" | tee -a "$logfile"
1284         use_mplayer_dumpstream=0
1285         invalid_feature_title=1
1286       fi
1287       return
1288     fi
1289   fi
1290
1291   # There is another form of protection that causes the mplayer dumpstream to fail. 
1292   # This can be detected by telling mplayer to parse the VOB file by copying its audio
1293   # video streams to a dummy output file (/dev/null). Do that here to check for that 
1294   # problem before continuing.
1295   if [ -e "$vobfile" ]; then
1296     mplayer_opts="-quiet -ofps 30000/1001 -ffourcc DIVX -oac copy -ovc copy"
1297     mencoder $mplayer_opts "$vobfile" -o "/dev/null" > $dumplog 2>&1
1298     grep -q "Too many audio packets in the buffer" $dumplog
1299     if [ $? == 0 ]; then
1300       echo "-> The VOB dumped by mplayer is invalid. Falling back to non mplayer dumpstream to copy the DVD" | tee -a "$logfile"
1301       use_mplayer_dumpstream=0
1302       mplayer_dumpstream_incompatibility=1
1303     fi
1304     [[ -e "$dumplog" ]] && rm -f $dumplog
1305   fi
1306 }
1307
1308 function fill_mythvideo_metadata {
1309
1310   # This function must be passed the filename as an argument
1311   # The filename must be a full path to the file
1312   filename="$1"
1313
1314   # Make sure the fill mythvideo metadata option has been set to 1
1315   if [ $fill_mythvideo_metadata -eq 0 ]; then
1316     echo "-> fill_mythvideo_metadata=0 therefore not updating mythvideo metadata for this rip" | tee -a "$logfile"
1317     return 0
1318   fi
1319
1320   # If the fill mythvideo metadata script is present, run it
1321   # fill_mythvideo_metadata.plThis will download the metadata for the DVD we ripped.
1322   if [[ -x `which fill_mythvideo_metadata.pl` ]]; then
1323     echo "-> Running fill_mythvideo_metadata.pl to lookup/add/update the metadata for this DVD: $filename" | tee -a "$logfile"
1324     fill_mythvideo_metadata.pl -N 0 -F "$filename" >> "$logfile" 2>&1
1325   else
1326     echo "-W- Unable to find the fill_mythvideo_metadata.pl script in your PATH. Unable to autofill the mythvideo DB for this rip." | tee -a "$logfile"
1327     echo "    Set the fill_mythvideo_metadata variable to 0 in the script to avoid running this step." | tee -a "$logfile"
1328   fi
1329 }
1330
1331 # remove the intermediate VOB file
1332 function remove_intermediate_vob_file {
1333   if [ $keep_intermediate_files -eq 0 ]; then
1334     [[ -e "$tmpdir/$dvdname.VOB" ]] && rm -f "$tmpdir/$dvdname.VOB"
1335   else
1336     echo "-> Keeping intermediate concatenated VOB file: $tmpdir/$dvdname.VOB" | tee -a "$logfile"
1337   fi
1338 }
1339
1340 # remove the original DVD image 
1341 function remove_intermediate_iso_file {
1342   [[ $keep_isofile -eq 1 ]] && return 1
1343   if [ $keep_intermediate_files -eq 0 ]; then
1344     [[ -e "$isofile" ]] && rm "$isofile"
1345   else
1346     echo "-> Keeping ddrescue intermediate iso file: $isofile" | tee -a "$logfile"
1347   fi
1348 }
1349
1350 # remove the intermediate dvdbackup folder
1351 function remove_intermediate_dvdbackup_folder {
1352   if [ $keep_intermediate_files -eq 0 ]; then
1353     [[ -d "$tmpdir/$dvdname" ]] && rm -rf "$tmpdir/$dvdname"
1354   else
1355     echo "-> Keeping intermediate dvdbackup folder: $tmpdir/$dvdname" | tee -a "$logfile"
1356   fi
1357 }
1358
1359 ##############################################################################################
1360 # MAIN
1361 ##############################################################################################
1362
1363 # Make a note of when this DVD rip started
1364 date=`date`
1365 echo -e "\n$date DVD rip started" >> "$logfile"
1366 echo "$cmd" >> "$logfile"
1367
1368 # Rip the DVD - Mirror Mode
1369 if [ $mirror_mode -eq 1 ]; then
1370   echo "-> Ripping DVD $dvdname to $dest"
1371
1372   # use ddrescue to make an ISO image of the disk
1373   make_dvd_iso_image "$dest/$dvdname.iso"
1374
1375   # add this video data to the mythtv DB
1376   fill_mythvideo_metadata "$dest/$dvdname.iso" 
1377
1378   # eject the disk upon completion
1379   if [ $eject_disk -ne 0 ]; then
1380     eject -T $dev
1381   fi
1382
1383   date=`date`
1384   echo "$date DVD rip completed" | tee -a "$logfile"
1385
1386   if [[ -n "$mailto" ]]; then
1387     cat "$logfile" | mailx -s "dvd rip of $dvdname DONE" "$mailto"
1388   fi
1389
1390 fi
1391
1392 # Rip the DVD - Main Title Feature Only
1393 if [ $mirror_mode -eq 0 ]; then
1394
1395   # Rip image from DVD
1396   if [ $ripdvd -eq 1 ]; then
1397     echo "-> Ripping DVD $dvdname to $dest" | tee -a "$logfile"
1398     # use ddrescue to make an ISO image of the disk
1399     make_dvd_iso_image "$tmpdir/$dvdname.iso"
1400   fi
1401
1402   # Rip image from DVD path
1403   if [ -n "$dvdpath" ]; then
1404     echo "-> Ripping DVD $dvdpath to $dest" | tee -a "$logfile"
1405     make_dvd_iso_image_from_folder "$dvdpath" "$tmpdir/$dvdname.iso" 1
1406   fi
1407
1408   # make sure our isofile value is set
1409   if [ -z "$isofile" ]; then
1410     isofile="$tmpdir/$dvdname.iso"
1411   fi
1412      
1413   if [ $make_final_dest_vob -eq 1 ] || [ $make_final_dest_comp -eq 1 ]; then
1414
1415     if [ ! -e "$vobfile" ]; then
1416       echo "-> Creating DVD video $vobfile" | tee -a "$logfile"
1417       
1418       # get the feature title from the ISO
1419       get_feature_title "$isofile"
1420  
1421       # get the crop value from the ISO
1422       get_crop_from_iso
1423
1424       # check for mplayer dumpstream incompatibilities
1425       # if they exist, this method will set this mode to 0.
1426       check_for_mplayer_dumpstream_incompatibility
1427
1428       if [ $use_mplayer_dumpstream -eq 1 ]; then 
1429
1430         # get our audio id from the ISO file
1431         get_audio_id_from_iso "$isofile"
1432
1433         # create our main VOB file from the ISO
1434         create_main_vob_with_mplayer "$isofile"
1435      
1436         # remove the intermediate VOB file
1437         remove_intermediate_vob_file
1438
1439         # it's possible that our VOB is still corrupted in some manner
1440         # check to make sure it is still a good VOB before continuing.
1441         check_for_mplayer_dumpstream_incompatibility
1442
1443       fi
1444  
1445       if [ $use_mplayer_dumpstream -eq 0 ]; then 
1446
1447         # use dvdbackup to make a DVD folder of the feature title
1448         make_dvdbackup_folder_image
1449   
1450         # create our main VOB file
1451         create_main_vob_with_cat
1452
1453         # get our audio id from the VOB file
1454         get_audio_id_from_vob "$tmpdir/$dvdname.VOB"
1455   
1456         # check for corrupted VOB start
1457         check_vob_for_corrupted_start
1458  
1459         # check to make sure our VOB is complete
1460         check_vob_for_completeness
1461
1462         # check to make sure our VOB doesn't have too many video packets
1463         check_vob_for_too_many_video_packets
1464
1465         # check to make sure our VOB doesn't have a52 crc errors
1466         check_vob_for_a52_crc_errors
1467
1468         # remove the intermediate VOB file
1469         remove_intermediate_vob_file
1470
1471       fi
1472
1473       # remove the intermediate ISO file
1474       remove_intermediate_iso_file
1475
1476     else
1477       if [ "$encoder" != "handbrake" ]; then 
1478         echo "-> Skipping VOB creation. VOB DVD video already exists: $vobfile" | tee -a "$logfile"
1479         # get our audio id from the VOB file
1480         get_audio_id_from_vob "$vobfile"
1481         # get the crop value from the VOB
1482         get_crop_from_vob
1483       fi
1484     fi
1485
1486     # eject the DVD disk since we are finished with it
1487     [ $eject_disk -eq 2 ] && eject -T $dev
1488
1489     # encode the VOB file to a compressed file format
1490     if [ $make_final_dest_comp -eq 1 ]; then
1491       echo "-> Encoding the DVD video to a compressed file using $encoder" | tee -a "$logfile"
1492
1493       # determine what our bitrate needs to be if a target size was specified instead
1494       calculate_bitrate_from_target_size        
1495      
1496       # encode the vob file into a compressed file format
1497       if [[ "$encoder" == "mencoder" ]]; then 
1498         encode_vob_file_mencoder
1499       fi
1500       if [[ "$encoder" == "handbrake" ]]; then
1501         encode_vob_file_handbrake
1502       fi
1503
1504       if [ $keep_intermediate_files -eq 0 ] && [ $make_final_dest_vob -eq 0 ]; then
1505         [[ -e "$vobfile" ]] && [[ $keep_vobfile -eq 0 ]] && rm -f "$vobfile";
1506         [[ -e "$passlogfile" ]] && rm -f "$passlogfile";
1507       else
1508         echo "-> Keeping VOB file: $vobfile" | tee -a "$logfile"
1509         echo "-> Keeping mencoder 2pass logfile: $passlogfile"
1510       fi
1511     fi
1512
1513   # add this video data to the mythtv DB
1514   [ $make_final_dest_comp -eq 1 ] && fill_mythvideo_metadata "$final_output_file" 
1515   [ $make_final_dest_vob -eq 1 ] && fill_mythvideo_metadata "$vobfile" 
1516     
1517   else
1518
1519   # use dvdbackup to make a DVD folder of the feature title
1520   make_dvdbackup_folder_image
1521
1522   # cd to the feature title DVD folder
1523   pushd "$tmpdir/$dvdname/VIDEO_TS" > /dev/null 2>&1
1524   if [ $? != 0 ]; then
1525     fatal_and_exit "-E- Unable to cd to $tmpdir/$dvdname/VIDEO_TS"
1526   fi
1527   
1528   # create the dvd.xml file for dvdauthor
1529   create_dvdauthor_dvd_xml_file  
1530
1531   # make the final DVD folder image
1532   make_dvdauthor_folder_image
1533
1534   # add this video data to the mythtv DB
1535   fill_mythvideo_metadata "$dest/$dvdname/VIDEO_TS" 
1536  
1537   # cd back to the dir we started from
1538   popd > /dev/null 2>&1
1539
1540   if [ $make_final_dest_iso -eq 1 ]; then
1541
1542     # make an iso image out of our directory
1543     make_dvd_iso_image_from_folder "$dest/$dvdname" "$dest/$dvdname.iso" 0
1544    
1545     # If the mkisofs was unable to make a .iso file for us, don't remove the DVD directory 
1546     if [ -s "$dest/$dvdname.iso" ]; then
1547       if [ $make_final_dest_folder -eq 0 ]; then
1548         echo "-> Removing DVD folder since ISO was created: $dest/$dvdname" | tee -a "$logfile"
1549         # remove the folder of the DVD image now that we have a .iso version of it
1550         [[ -d "$dest/$dvdname" ]] && rm -rf "$dest/$dvdname"
1551       fi
1552     else
1553       # we created an empty iso file, remove it
1554       echo "-> Removing empty ISO image: $dest/$dvdname.iso" | tee -a "$logfile"
1555       echo "-> Keeping the DVD folder since the ISO image couldn't be created properly: $dest/$dvdname"
1556       [[ -e "$dest/$dvdname.iso" ]] && rm "$dest/$dvdname.iso"
1557     fi
1558  
1559     # add this video data to the mythtv DB
1560     fill_mythvideo_metadata "$dest/$dvdname.iso" 
1561
1562   fi
1563
1564   fi
1565
1566   # remove the ddrescue DVD ISO image
1567   remove_intermediate_iso_file
1568
1569   # remove the tmp dvdbackup folder of the DVD image
1570   remove_intermediate_dvdbackup_folder
1571
1572   # eject the DVD disk upon completion
1573   [ $eject_disk -eq 1 ] && eject -T $dev
1574
1575   date=`date`
1576   echo "$date DVD rip completed" | tee -a "$logfile"
1577
1578   if [[ -n "$mailto" ]]; then
1579     cat "$logfile" | mailx -s "dvd rip of $dvdname DONE" "$mailto"
1580   fi
1581
1582 fi
1583
1584 ##############################################################################################