Added new eject_opts option for greater flexibility.
[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.5
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 # See the README file for information about the dependencies
19 # this script has.
20
21 ##############################################################################################
22 # Global Variables
23 ##############################################################################################
24 typeset cmd="$0 $*"
25 typeset dvdname=""
26 typeset debug=""
27 typeset dest=""
28 typeset isofile=""
29 typeset vobfile=""
30 typeset dvdpath=""
31 typeset aspect=""
32 typeset SCALE=""
33 typeset CROP=""
34 typeset profile="xvidhq"
35 typeset extension=""
36 typeset mailto=""
37 typeset encoder=""
38 typeset ripper=""
39 typeset default_alang="en"
40 typeset track=""
41 typeset drc="0.0"
42 typeset handbrake_xvid=""
43 typeset handbrake_mp4=""
44 typeset makemkv=""
45 typeset makemkv_disc_id=""
46 typeset mkvextract=""
47 typeset mkvpropedit=""
48 typeset mkvmerge=""
49 typeset mp4box=""
50 typeset dvdxchap=""
51 typeset eject_opts="-T"
52 typeset -i default_aid=128
53 typeset -i aid_override=-1
54 typeset -i force_onepass_mode=0
55 typeset -i eject_disk=1
56 typeset -i keep_isofile=0
57 typeset -i keep_vobfile=0
58 typeset -i keep_dvdfolder=0
59 typeset -i keep_intermediate_files=0
60 typeset -i make_final_dest_vob=0
61 typeset -i make_final_dest_iso=0
62 typeset -i make_final_dest_folder=0
63 typeset -i make_final_dest_comp=0
64 typeset -i errors=0
65 typeset -i show_usage=0
66 typeset -i mirror_mode=0
67 typeset -i target_video_bitrate=2000
68 typeset -i target_audio_bitrate=224
69 typeset -i target_size=0
70 typeset -i audio_2ch=0
71 typeset -i audio_6ch=0
72 typeset -i invalid_feature_title=0
73 typeset -i feature_title_override=0
74 typeset -i mplayer_dumpstream_incompatibility=0
75 typeset -i lsdvd_incompatibility=0
76 typeset -i custom_video_bitrate=0
77 typeset -i custom_audio_bitrate=0
78 typeset -i custom_audio_2ch=0
79 typeset -i custom_audio_6ch=0
80 typeset -i minimum_feature_title_length=60
81 typeset -i lsdvd_timeout=10
82 typeset -i makemkv_copy_largest_title_only=1
83
84 ##############################################################################
85 # Local Machine Settings:
86 # Sources both the "default" conf file tracked by GIT (rip_dvd.conf.dist)
87 # and the local conf file created by each local machine (rip_dvd.conf)
88 # Copy the rip_dvd.conf.dist file to rip_dvd.conf and edit the later.
89 # This will allow you to override all the default values to meet your needs
90 # in a way that won't get clobbered when you pull updates from my GIT repo.
91 ##############################################################################
92 config="${0%/*}/rip_dvd.conf"
93
94 # The config file will be searched for in the following location order:
95 found_config=0
96
97 # 1) /path/to/rip_dvd/script/rip_dvd.conf.dist
98 [ -e "${config}.dist" ] && found_config=1 && . "${config}.dist"
99
100 # 2) /path/to/rip_dvd/script/rip_dvd.conf
101 [ -e "${config}" ] && found_config=1 && . "${config}"
102
103 # 3) /etc/rip_dvd.conf
104 [ -e "/etc/rip_dvd.conf" ] && found_config=1 && . "/etc/rip_dvd.conf"
105
106 # 4) $PWD/rip_dvd.conf
107 [ -e "$PWD/rip_dvd.conf" ] && found_config=1 && . "$PWD/rip_dvd.conf"
108
109 # Check to make sure we found the config file
110 if [ $found_config -eq 0 ]; then
111   echo "-E- Unable to find the rip_dvd.conf file: $config"
112   exit 1
113 fi
114
115 ##############################################################################################
116 # Command line processing
117 ##############################################################################################
118 while (($#)) && getopts 162wmvifkzx:hT:t:n:d:b:B:s:t:a:p:e:j:l:r:R: opt "$@"
119 do
120     case $opt in
121         (n)     dvdname=$OPTARG;;
122         (d)     dest=$OPTARG;;
123         (b)     target_video_bitrate=$OPTARG; custom_video_bitrate=1;;
124         (B)     target_audio_bitrate=$OPTARG; custom_audio_bitrate=1;;
125         (s)     target_size=$OPTARG;;
126         (2)     audio_2ch=1; custom_audio_2ch=1;;
127         (6)     audio_6ch=1; custom_audio_6ch=1;;
128         (1)     force_onepass_mode=1;;
129         (v)     make_final_dest_vob=1;;
130         (i)     make_final_dest_iso=1;;
131         (f)     make_final_dest_folder=1;; 
132         (z)     make_final_dest_comp=1;;
133         (R)     ripper=$OPTARG;;
134         (e)     encoder=$OPTARG;;
135         (m)     mirror_mode=1;;
136         (k)     keep_intermediate_files=1;;
137         (t)     feature_title_override=$OPTARG;;
138         (a)     aspect=$OPTARG;;
139         (p)     profile=$OPTARG;;
140         (x)     extension=$OPTARG;;
141         (j)     eject_disk=$OPTARG;;
142         (l)     aid_override=$OPTARG;;
143         (r)     drc=$OPTARG;;
144         (w)     set -x;;
145         (T)     minimum_feature_title_length=$OPTARG;;
146         (h)     show_usage=1;;
147         (:)     echo >&2 "$0: $OPTARG requires a value"; errors=errors+1;;
148         (\?)    echo >&2 "$0: invalid option '$OPTARG'"; errors=errors+1;;
149     esac
150 done
151
152 shift $((OPTIND-1))
153
154 function usage() {
155     echo >&2 "Usage: ${0##*/} -d <destdir> [ <options> ]"
156     echo >&2 "Revision $REV"
157     echo >&2 "Options:"
158     echo >&2 "   -d <destdir>  Specify the destination directory to store the ripped DVD to"
159     echo >&2 "   -n <dvdname>  Specify a path to a DVD folder or file to process:"
160     echo >&2 "                 1) If this option is not specified, the DVD will be ripped from $dev"
161     echo >&2 "                 2) If dvdname is a full path to a DVD folder, it will be ripped as a DVD instead of $dev"
162     echo >&2 "                 3) If dvdname is a full path to an MPG2 file, it will be ripped as a DVD instead of $dev"
163     echo >&2 "                 4) If dvdname is a full path to an ISO file, it will be ripped as a DVD instead of $dev"
164     echo >&2 "                 5) If dvdname is a full path to a VOB file, it will be ripped as a DVD instead of $dev"
165     echo >&2 "   -p <profile>  Specify which encoding profile to use in -w mode as shown below:"
166     echo >&2 "                 Mencoder and Handbrake Encoder Profiles:"
167     echo >&2 "                 - xvidvhq = AVI, very high quality encoding, Xvid codec, 2 pass encoding"
168     echo >&2 "                 - xvidhq = AVI, high quality encoding, Xvid codec, 2 pass encoding (default)"
169     echo >&2 "                 - xvid = AVI, fast encoding, Xvid codec, 2 pass encoding"
170     echo >&2 "                 - iphone = MP4, x264 codec, 2 pass encoding, forced 480:320 scaling"
171     echo >&2 "                 - ipod = MP4, x264 codec, 2 pass encoding, forced 320:240 scaling"
172     echo >&2 "                 Handbrake Only Encoder Profiles:"
173     echo >&2 "                 - mkvvhq = MKV, very high quality encoding, x264 codec, 2 pass encoding"
174     echo >&2 "                 - mkvhq = MKV, high quality encoding, x264 codec, 2 pass encoding"
175     echo >&2 "                 - mkv = MKV, high quality encoding, x264 codec, 2 pass encoding"
176     echo >&2 "                 - mp4vhq = MP4, very high quality encoding, x264 codec, 2 pass encoding"
177     echo >&2 "                 - mp4hq = MP4, high quality encoding, x264 codec, 2 pass encoding"
178     echo >&2 "                 - mp4 = MP4, fast encoding, x264 codec, 2 pass encoding"
179     echo >&2 "                 - hb_<profile> = Any predefined HandBrake profile (run HandBrakeCLI -z and replace spaces with underscores) "
180     echo >&2 "   -x <ext>      Specify a suffix extension to apply to the end of the final image filename (like .xvid, .ipod, etc)"
181     echo >&2 "                 If you run multiple instances of this script ripping the same DVD, you need to specify this option."
182     echo >&2 "   -m            Make a mirror image of the DVD and save it as a DVD ISO file"
183     echo >&2 "                 The default operation is non-mirror mode where only the main"
184     echo >&2 "                 feature title will be ripped."
185     echo >&2 "   -v            Make the final image a DVD VOB file"
186     echo >&2 "   -i            Make the final image a DVD ISO file"
187     echo >&2 "   -f            Make the final image a DVD folder"
188     echo >&2 "   -z            Make the final image a compressed fi[[ ! -e "$vobfile" ]]le based on your profile selection and encoder"
189     echo >&2 "   -R <ripper>   Specify the ripper to use to make the DVD image (valid rippers=ddrescue|makemkv|handbrake|mplayer) (default=makemkv if found)"
190     echo >&2 "   -e <encoder>  Specify the encoder to use to make the compressed file (valid encoders=mencoder|handbrake) (default=handbrake if found)"
191     echo >&2 "                 You must also specify the target size or bitrate using the '-s' or '-b' options with xvid profiles"
192     echo >&2 "   -s <size>     Set the target size of the compressed file in MB (ex: 700, 1000, etc)"
193     echo >&2 "   -b <bitrate>  Set the video bitrate desired in the compressed file in kbits/sec (ex: 1500, 2000 (default), etc)"    
194     echo >&2 "   -B <bitrate>  Set the audio bitrate desired in the compressed file in kbits/sec (ex: 96, 128, 160, 224 (default), 300, etc)"    
195     echo >&2 "   -a <W:H>      Specify the width x height aspect ratio to scale the DVD to (only used in -z mode)"
196     echo >&2 "      <W>        If only the width is given, it will autoset the height to a value which preserves the aspect ratio"
197     echo >&2 "                 The default behavior is autoaspect mode, which preserves the original aspect, with no scaling being done"
198     echo >&2 "   -j <n>        Eject the disk:"
199     echo >&2 "                 - 0 = do not eject the disk"
200     echo >&2 "                 - 1 = eject after the entire script is done (default)"
201     echo >&2 "                 - 2 = eject after the disk is no longer needed (prior to starting the encode process)"
202     echo >&2 "                 The last option will allow you to start ripping another disk while the encoding process is running on a previous"
203     echo >&2 "   -1            Force 1-pass encoding mode across all profiles"
204     echo >&2 "   -2            Use 2 channel MP3 audio encoding when making a compressed file (default is 6 channel AC3)"
205     echo >&2 "   -6            Use 6 channel AC3 audio encoding when making a compressed file (default)"
206     echo >&2 "   -r <x.x>      Apply extra dynamic range compression to the audio, making soft sounds louder. "
207     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)"
208     echo >&2 "   -k            Keep the intermediate files (good for debugging)"
209     echo >&2 "                 In -z mode, run with this option to keep the original .VOB file"
210     echo >&2 "                 By default, all intermediary files are deleted. Only the final image is kept"
211     echo >&2 "   -l <aid>      Specify the audio AID language ID to rip from the source DVD"
212     echo >&2 "   -t <title>    Specify the main feature title to pull from the DVD (only required if this script can't figure it out)"
213     echo >&2 "   -T <length>   Specify the minimum feature title length in minutes. This is used when picking which title to rip."
214     echo >&2 "   -w            Set the sh Execute/Verbose flag (causes every command to be echoed)"
215     echo >&2 ""
216     exit 2
217 }
218
219 if (($errors)) || (($show_usage))
220 then
221   usage
222 fi
223
224 # Sanity Check - Command Line Options 
225 if [ "$dest" == "" ]; then
226   echo "-E- You must specify a destination directory with '-d'" | tee -a $logfile
227   usage
228 fi
229
230 if [ $make_final_dest_vob -eq 0 ] && [ $make_final_dest_iso -eq 0 ] && 
231    [ $make_final_dest_folder -eq 0 ] && [ $make_final_dest_comp -eq 0 ] && [ $mirror_mode -eq 0 ]; then
232     # Make our default dest type a compressed movie if the user didn't ask for anything else to be done
233     make_final_dest_comp=1
234 fi
235
236 if ([ $target_size -ne 0 ] || [ "$aspect" != "" ]) && [ $make_final_dest_comp -ne 1 ]; then
237   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
238   usage
239 fi
240
241 if [ $target_video_bitrate -eq 0 ] && [ $target_size -eq 0 ] && [ $make_final_dest_comp -eq 1 ]; then
242   echo "-E- You must specify a bitrate in compressed file mode. You must specify '-b' or '-s' when using '-z'" | tee -a $logfile
243   usage
244 fi
245
246 if [ $mirror_mode -eq 1 ]; then
247   if [ $make_final_dest_vob -eq 1 ] || [ $make_final_dest_iso -eq 1 ] || 
248      [ $make_final_dest_folder -eq 1 ] || [ $make_final_dest_comp -eq 1 ]; then
249     echo "-E- You can't specify '-v' or '-i' or '-f' or '-z' when operating in mirror mode with '-m'" | tee -a $logfile
250     usage
251   fi
252 fi
253
254 # If audio channel requirements weren't given, assume a default value of 6channel audio
255 if [ $audio_2ch -eq 0 ] && [ $audio_6ch -eq 0 ]; then
256   audio_6ch=1
257   custom_audio_6ch=1
258 fi
259
260 # Make makemkv the default ripper if not specified and we can find it
261 if [ -z "$ripper" ]; then
262   ripper="makemkv"
263   [[ ! -x `which $makemkv` ]] && ripper="ddrescue";
264 fi
265
266 # Make handbrake the default encoder if not specified and we can find it
267 if [ -z "$encoder" ]; then
268   encoder="mencoder"; # If we can't find handbrake, set mencoder as the default
269   [[ -x `which $handbrake_xvid` ]] && [[ "$profile" =~ "xvid" ]] && encoder="handbrake";
270   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "mp4" ]] && encoder="handbrake";
271   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "mkv" ]] && encoder="handbrake";
272   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "ip" ]] && encoder="handbrake";
273   [[ -x `which $handbrake_mp4` ]] && [[ "$profile" =~ "hb" ]] && encoder="handbrake";
274 fi
275
276 # Sanity check the profile selection
277 if [[ "$encoder" == "mencoder" ]]; then
278   [[ "$profile" =~ "mp4" ]] && echo "-E- invalid encoder $encoder selected for mp4 profile: $profile" && exit
279   [[ "$profile" =~ "mkv" ]] && echo "-E- invalid encoder $encoder selected for mkv profile: $profile" && exit
280 fi
281
282 if [[ "$encoder" != "mencoder" ]] && [[ "$encoder" != "handbrake" ]]; then
283   echo "-E- Invalid encoder specified: $encoder"
284   exit 1
285 fi
286
287 # If the aspect ratio option was specified, set the scale variable appropriately for mencoder
288 if [ "$aspect" != "" ]; then
289   echo "$aspect" | grep -q "x"
290   if [ $? == 0 ]; then
291     echo "-E- You must specify the aspect option with a value whose format is W:H"
292     exit 1
293   fi
294   echo "$aspect" | grep -q ":"
295   if [ $? != 0 ]; then
296     [ "$encoder" == "mencoder" ] && SCALE=",scale -zoom -sws 9 -xy $aspect"
297     [ "$encoder" == "handbrake" ] && SCALE="-w $aspect"
298   else
299     [ "$encoder" == "mencoder" ] && SCALE=",scale=$aspect"
300     if [ "$encoder" == "handbrake" ]; then
301        WIDTH=`echo "$aspect" | awk -F ':' '{ print $1; }'`
302        HEIGHT=`echo "$aspect" | awk -F ':' '{ print $2; }'`
303        SCALE="-w $WIDTH -l $HEIGHT"
304     fi
305   fi
306 fi
307
308 # Sanity Check - Key executables
309 [[ ! -x `which lsdvd` ]] && echo "-E- missing dependency: lsdvd" && exit
310 [[ ! -x `which volname` ]] && echo "-E- missing dependency: volname" && exit
311 [[ ! -x `which ddrescue` ]] && echo "-E- missing dependency: ddrescue" && exit
312 [[ ! -x `which dvdbackup` ]] && echo "-E- missing dependency: dvdbackup" && exit
313 [[ ! -x `which mencoder` ]] && echo "-E- missing dependency: mencoder" && exit
314 [[ ! -x `which makexml` ]] && echo "-E- missing dependency: makexml" && exit
315 [[ ! -x `which dvdauthor` ]] && echo "-E- missing dependency: dvdauthor" && exit
316 [[ ! -x `which mkisofs` ]] && echo "-E- missing dependency: mkisofs" && exit
317 [[ -n "$handbrake_xvid" ]] && [[ ! -x `which $handbrake_xvid` ]] && echo "-E- missing handbrake xvid encoder, set in rip_dvd.conf to: $handbrake_xvid" && exit
318 [[ -n "$handbrake_mp4" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing handbrake mp4 encoder, set in rip_dvd.conf to: $handbrake_mp4" && exit
319 [[ -n "$makemkv" ]] && [[ ! -x `which $makemkv` ]] && echo "-E- missing makemkv ripper, set in rip_dvd.conf to: $makemkv" && exit
320 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "xvid" ]] && [[ ! -x `which $handbrake_xvid` ]] && echo "-E- missing HandBrake encoder: $handbrake_xvid" && exit
321 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "mp4" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing HandBrake encoder: $handbrake_mp4" && exit
322 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "ip" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing HandBrake encoder: $handbrake_mp4" && exit
323 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "hb" ]] && [[ ! -x `which $handbrake_mp4` ]] && echo "-E- missing HandBrake encoder: $handbrake_mp4" && exit
324 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "mkv" ]] && [[ ! -x `which $mkvextract` ]] && echo "-E- missing mkvextract: $mkvextract" && exit
325 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "mkv" ]] && [[ ! -x `which $mkvpropedit` ]] && echo "-E- missing mkvpropedit: $mkvpropedit" && exit
326 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "mkv" ]] && [[ ! -x `which $mkvmerge` ]] && echo "-E- missing mkvmerge: $mkvmerge" && exit
327 [[ "$encoder" == "handbrake" ]] && [[ "$profile" =~ "mp4" ]] && [[ ! -x `which $mp4box` ]] && echo "-E- missing mp4box: $mp4box" && exit
328 [[ "$encoder" == "handbrake" ]] && [[ ! -x `which ffmpeg` ]] && echo "-E- missing dependency: ffmpeg" && exit
329
330 ##############################################################################################
331
332 typeset -i ripdvd
333 if [ -z "$dvdname" ]; then
334
335   # make sure the DVD device is accessible
336   volname $dev > /dev/null 2>&1
337   if [ $? != 0 ]; then
338     echo "-E- Can't access the DVD device $dev"
339     exit 1
340   fi
341
342   # now capture the volume name from the device
343   dvdname=`volname $dev | awk '{ print $1 }'`
344   ripdvd=1
345  
346   # if the dvdname is still blank, go about it a different way (for BluRays)
347   if [[ -z "$dvdname" ]]; then
348     echo "-> Using makemkv to obtain disk label"
349     dvdname=`$makemkv info --noscan --robot disc:$makemkv_disc_id | grep "CINFO:2," | awk -F "," '{ print $3; }' | tr ' ' '_' | sed 's/\"//g'`
350     echo "   Found disk label: $dvdname"
351     ripdvd=1
352   fi
353
354 else 
355
356   # check to see if dvdname is a full path to a real directory
357   # if it is, set dvdname and dvdpath appropriately
358   if [ -d "$dvdname" ]; then
359     dvdpath="$dvdname"
360     dvdname=`basename "$dvdname"`
361     keep_dvdfolder=1
362     if [ -z "$dvdname" ]; then
363      echo "-E- Unable to extract dvdname from path: $dvdpath"
364      exit 1
365     fi
366     if [ ! -d "$dvdpath/VIDEO_TS" ]; then
367       echo "-E- You must supply a full path to a valid DVD folder with this option"
368       exit 1
369     fi
370   fi
371
372   # Check to see if dvdname is a full path to a file
373   if [ -f "$dvdname" ]; then
374     valid_file=0
375
376     # check to see if dvdname is a full path to an MPG2 (VOB) file
377     # if it is, set dvdname and vobfile appropriately
378     file "$dvdname" | grep -q "MPEG"
379     if [ $? == 0 ]; then
380       # It is a valid MPEG2 file, now strip the extension off our dvdname
381       # An MPEG file is like a VOB file (intermediate format of the DVD movie)
382       vobfile="$dvdname"
383       dvdname=`basename "$dvdname"`
384       dvdname=${dvdname%.[^.]*}
385       keep_vobfile=1
386       valid_file=1
387     fi
388
389     # check to see if dvdname is a full path to an ISO file
390     # if it is, set dvdname and isofile appropriately
391     file "$dvdname" | grep -q -e "ISO" -e "UDF"
392     if [ $? == 0 ]; then
393       # It is a valid ISO file, now strip the extension off our dvdname
394       # An ISO file is treated as a disc or DVD image that needs to be converted
395       # to an intermediate vobfile before it can be compressed.
396       isofile="$dvdname"
397       dvdname=`basename "$dvdname"`
398       dvdname=${dvdname%.[^.]*}
399       keep_isofile=1
400       valid_file=1
401     fi    
402
403     # check to see if dvdname is a full path to a VOB file
404     # if it is, set dvdname and isofile appropriately
405     file "$dvdname" | grep -q -e "VOB"
406     if [ $? == 0 ]; then
407       # It is a valid VOB file, now strip the extension off our dvdname
408       # A VOB file is an intermediate format of the DVD movie
409       vobfile="$dvdname"
410       dvdname=`basename "$dvdname"`
411       dvdname=${dvdname%.[^.]*}
412       keep_vobfile=1
413       valid_file=1
414     fi  
415     
416     # check to see if dvdname is a full path to an MKV file
417     # if it is, set dvdname and isofile appropriately
418     file "$dvdname" | grep -q -e "mkv"
419     if [ $? == 0 ]; then
420       # It is a valid MKV file, now strip the extension off our dvdname
421       # An MKV file is like a VOB file (intermediate format of the DVD movie)
422       vobfile="$dvdname"
423       dvdname=`basename "$dvdname"`
424       dvdname=${dvdname%.[^.]*}
425       keep_vobfile=1
426       valid_file=1
427     fi    
428
429
430     # If we didn't find a handler for the file above, complain
431     if [ $valid_file -eq 0 ]; then
432       echo "-E- Unsupported file type: $vobfile"
433       exit 1
434     fi
435
436   # Throw an error if we can't find what the -n option is pointing to
437   else 
438     echo "-E- Unable to find the directory or file specified by the '-n $dvdname' option. Please make sure the path is valid."
439     exit 1
440   fi
441
442   # Set the ripdvd flag to false since we aren't ripping a DVD disk
443   ripdvd=0
444
445   # Since we aren't ripping a DVD disk, don't eject anything either
446   eject_disk=0
447
448 fi
449
450 # remove bad characters from the dvdname
451 dvdname=${dvdname%.} # remove trailing '.' character
452
453 # add the suffix extension to the end of the dvdname
454 dvdname=$dvdname$extension
455
456 # make a "safe" dvdname (remove special characters)
457 safedvdname=`basename "$dvdname" | sed 's/[ !&*\\$?]/_/g'`
458
459 # Make sure we have a non-empty dvdname
460 if [ -z "$dvdname" ]; then
461   echo "-E- unable to determine dvdname"
462   exit 1
463 fi
464
465 # make sure our vobfile value is set
466 if [ -z "$vobfile" ]; then
467   vobfile="$dest/$dvdname.VOB"
468 fi
469
470 # set up some variables to hold various logfiles
471 logfile="$logdir/$dvdname.log"
472 passlogfile="$tmpdir/$safedvdname.log"
473 ddrescuelog=`tempfile`
474 dvdauthorlog=`tempfile`
475 encodelog=`tempfile`
476 dumplog=`tempfile`
477
478 # create the tmpdir if it doesn't already exist
479 if [ ! -d "$tmpdir" ]; then
480   mkdir -p "$tmpdir"
481   if [ $? != 0 ]; then
482     echo "-E- Unable to create the tmpdir: $tmpdir"
483     exit 1
484   fi
485 fi
486
487 # create the logdir if it doesn't already exist
488 if [ ! -d "$logdir" ]; then
489   mkdir -p "$logdir"
490   if [ $? != 0 ]; then
491     echo "-E- Unable to create the logdir: $logdir"
492     exit 1
493   fi
494 fi
495
496 ##############################################################################################
497 # cleanup functions
498 ##############################################################################################
499 cleanup() { 
500   if [ $keep_intermediate_files -eq 0 ]; then
501     [[ -e "$dvdauthorlog" ]] && rm -f "$dvdauthorlog"
502     [[ -e "$ddrescuelog" ]] && rm -f "$ddrescuelog"
503     [[ -e "$encodelog" ]] && rm -f "$encodelog"
504     [[ -e "$dumplog" ]] && rm -f "$dumplog"
505   else
506     [[ -e "$dvdauthorlog" ]] && echo "-> Keeping dvdauthor log: $dvdauthorlog" | tee -a "$logfile"
507     [[ -e "$ddrescuelog" ]] && echo "-> Keeping ddrescue log: $ddrescuelog" | tee -a "$logfile"
508     [[ -e "$encodelog" ]] && echo "-> Keeping encode log: $encodelog" | tee -a "$logfile"
509     [[ -e "$dumplog" ]] && echo "-> Keeping dump log: $dumplog" | tee -a "$logfile"
510   fi
511   echo ""
512 }
513
514 fatal_and_exit() {
515   if [[ -z "$1" ]]; then
516     msg="-E- control-c killed us"
517   else
518     msg=$1
519   fi
520   echo -e 2>&1 "$msg" | tee -a "$logfile"
521   if [[ -n "$mailto" ]]; then
522     echo -e "$msg" | mailx -s "dvd rip of $dvdname FAILED" "$mailto"
523   fi
524   keep_intermediate_files=1
525   exit 1
526 }
527
528 # Call our cleanup functions on INT and EXIT signals
529 trap fatal_and_exit INT
530 trap cleanup EXIT
531
532 ##############################################################################################
533 # processing functions
534 ##############################################################################################
535
536 function alarm() { perl -e 'alarm shift; exec @ARGV' "$@"; }
537
538 function lsdvd_longest_title {
539   dev="$1"
540
541   # Only use lsdvd to extract the longest feature title if we didn't detect an incompatibility earlier
542   if [ $lsdvd_incompatibility -eq 1 ]; then
543     invalid_feature_title=1
544     return
545   fi
546
547   # Try the normal lsdvd command to see if it works
548   alarm $lsdvd_timeout lsdvd $dev >> "$logfile" 2>&1
549   if [ $? != 0 ]; then
550     # lsdvd didn't work
551     invalid_feature_title=1
552     lsdvd_incompatibility=1
553     return
554   fi
555  
556   # lsdvd is good to go, use it
557   feature_title=`lsdvd $dev 2>/dev/null | awk '/Longest/ { print $NF }'`
558 }
559
560 function lsdvd_css {
561   dev="$1"
562
563   # Try the normal lsdvd command to see if it works
564   alarm $lsdvd_timeout lsdvd $dev >> "$logfile" 2>&1
565
566   if [ $? != 0 ]; then
567     # lsdvd didn't work. Try VLC.
568     lsdvd_incompatibility=1
569     if [[ -x `which cvlc` ]]; then 
570       echo "-> lsdvd failed to DeCSS the DVD. Trying VLC: $dev" | tee -a "$logfile"
571       alarm $lsdvd_timeout cvlc --no-video --no-audio $dev  >> "$logfile" 2>&1
572       # Once you get a DVD that VLC can't handle, figure out how 
573       # to detect that here and abort.
574       #if [ $? != 1 ]; then
575       #  echo "-> VLC failed to decss the DVD."
576       #  return 1
577       #fi
578     else
579       fatal_and_exit "-E- lsdvd failed to DeCSS the DVD. VLC not found, but required to rip this DVD."
580     fi
581   fi
582   return 0
583 }
584
585 # reduce the size of the mkv src file using handbrake
586 function encode_mkv_file_makemkv {
587     src="$1"
588     dst="$2"
589     tmpdst=""
590
591     # Convert our ISO to a MKV if it is a real iso
592     if [[ $real_isofile -eq 1 ]]; then
593         tmpdst="$tmpdir/$dvdname.mkv"
594         make_dvd_mkv_image "$tmpdst" "iso" "$src"
595         src="$tmpdst"
596     fi
597
598     # Set a variable that we will use later to determine if we found a handler for $profile or not
599     typeset -i found_profile=0 
600   
601     # Globals
602     typeset quality=""
603     typeset handbrake_audio_opts=""
604     typeset handbrake_cli=""
605
606     # Predefined Handbrake Profile Handling
607     if [[ "$profile" =~ "mkvvhq" ]]; then
608         found_profile=1
609         handbrake_cli="$handbrake_mp4"
610         final_output_file="$dst"
611         quality="0.9"
612     fi
613     if [[ "$profile" =~ "mkvhq" ]]; then
614         found_profile=1
615         handbrake_cli="$handbrake_mp4"
616         final_output_file="$dst"
617         quality="0.85"
618     fi
619
620     # setup our audio option
621     if [ $audio_2ch -eq 1 ] && [ $audio_6ch -eq 1 ]; then
622         handbrake_audio_opts="-E faac,ac3 -6 dpl2,auto"
623     fi
624     if [ $audio_6ch -eq 1 ] && [ $audio_2ch -eq 0 ]; then
625         handbrake_audio_opts="-E ac3 -6 auto"
626     fi
627     if [ $audio_2ch -eq 1 ] && [ $audio_6ch -eq 0 ]; then
628         handbrake_audio_opts="-E faac -6 dpl2"
629     fi
630
631     # find out what our audio track is
632     get_audio_track_from_mkv "$src" "$handbrake_cli"
633     if [ -n "$track" ]; then
634         handbrake_audio_opts="$handbrake_audio_opts -a $track"
635         track="" 
636     fi
637     
638     # Execute the handbrake command to encode the video
639     echo -e "\n   Encoding: $handbrake_cli -i \"$src\" -o \"$dst\" --strict-anamorphic --crop 0:0:0:0 -q $quality $handbrake_audio_opts -v 1 -m"
640     $handbrake_cli -i "$src" -o "$dst" --strict-anamorphic --crop 0:0:0:0 -q $quality $handbrake_audio_opts -v 1 | tee -a $encodelog 2>&1
641     handbrake_retval=$?
642
643     if [ $handbrake_retval != 0 ]; then
644         fatal_and_exit "-E- Unhandled handbrake error"
645     fi
646
647     # Extract the chapters from the src and apply to the dst
648     chapter_tmpfile="$tmpdir/$dvdname.xml"
649     $mkvextract chapters "$src" > "$chapter_tmpfile"
650     $mkvpropedit -c "$chapter_tmpfile" "$dst"
651
652     # find out what our default_alang subtitle track is in the src
653     get_subtitle_track_from_mkv "$src" "$handbrake_cli"
654
655     # Extract the subtitles from the src and apply to the dst
656     srt_tmpfile="$tmpdir/$dvdname.srt"
657     sub_tmpfile="$tmpdir/$dvdname.sub"
658     idx_tmpfile="$tmpdir/$dvdname.idx"
659     $mkvextract tracks "$src" $track:$srt_tmpfile
660     $mkvmerge -o "$dst.subs" "$dst" $idx_tmpfile
661     mv "$dst.subs" "$dst"
662
663     # Set the default subtitle track to "no subtitles" in the dst
664     $mkvpropedit "$dst" --edit track:s1 --set flag-default=0
665
666     # Concatenate the encode log to our main log file, greping out unwanted lines
667     cat $encodelog | grep -v "Encoding:" | grep -v "hb_demux_ps" >> "$logfile" 
668     cat $encodelog | grep "Encoding:" | sed 's/\r/\n/g' | grep "Encoding:" | grep "ETA" | head -1 >> "$logfile"
669     cat $encodelog | grep "Encoding:" | sed 's/\r/\n/g' | grep "Encoding:" | grep "ETA" | tail -1 >> "$logfile"  
670
671     # Remove intermediary file if we created one   
672     if [ $keep_intermediate_files -eq 0 ]; then
673         [[ -e "$tmpdst" ]] && rm -f "$tmpdst"
674         rm "$chapter_tmpfile"
675         rm "$idx_tmpfile" "$sub_tmpfile"
676     else
677         echo "-> Keeping intermediate chapter file: $chapter_tmpfile" | tee -a "$logfile"
678         echo "-> Keeping intermediate subtitle files: $idx_tmpfile $sub_tmpfile" | tee -a "$logfile"
679         [[ -e "$tmpdst" ]] && echo "-> Keeping intermediate MKV file: $tmpdst" | tee -a "$logfile"
680     fi
681 }
682
683 # encode the vob file into a compressed file format using handbrake
684 function encode_vob_file_handbrake {
685   
686   # declare some globals
687   typeset handbrake_cli=""
688   typeset handbrake_video_encoder_opts=""
689   typeset filetype=""
690   typeset handbrake_audio_opts=""
691   typeset hb_profile=""
692   typeset SIZE=""
693   typeset AUDIO_BITRATE=""
694
695   # Set a variable that we will use later to determine if we found a handler for $profile or not
696   typeset -i found_profile=0    
697
698   # Default is 2 pass mode. Profiles can override this. Command line can override this as well.
699   PASSES="-2"
700   if [ $force_onepass_mode -eq 1 ]; then
701       PASSES=""
702   fi
703
704   # Set our DRC option
705   DRC="-D $drc"
706
707   if [ $target_size -ne 0 ]; then
708     SIZE="-S $target_size"
709   fi 
710
711   if [ $custom_audio_bitrate -eq 1 ]; then
712     AUDIO_BITRATE="-B $target_audio_bitrate"
713   fi
714
715   if [ $force_onepass_mode -eq 1 ]; then
716     PASSES=""
717   fi
718
719   # get our audio track from the vobfile (requires mp4 version of handbrake to extract)
720   if [[ "$vobfile" =~ /mkv/ ]]; then
721       get_subtitle_track_from_mkv "$vobfile" "$handbrake_mp4"
722   else
723       get_audio_track_from_vob "$vobfile" "$handbrake_mp4"
724   fi
725
726   # XVID profile
727   if [[ "$profile" =~ "xvid" ]]; then
728     found_profile=1
729     handbrake_cli="$handbrake_xvid"
730     final_output_file="$dest/$dvdname.avi"
731     filetype="avi"
732
733     # Very High Quality (16fps)
734     if [ "$profile" == "xvidvhq" ]; then
735       handbrake_opts[0]="-f avi"
736       handbrake_opts[1]="-b $target_video_bitrate"
737       handbrake_opts[2]="-e xvid"
738       handbrake_opts[3]="-T"
739       handbrake_opts[4]="-5"
740       handbrake_opts[5]="-8"
741     fi
742     # High Quality (20fps)
743     if [ "$profile" == "xvidhq" ]; then
744       handbrake_opts[0]="-f avi"
745       handbrake_opts[1]="-b $target_video_bitrate"
746       handbrake_opts[2]="-e ffmpeg"
747       handbrake_opts[3]="-T"
748       handbrake_opts[4]="-5"
749     fi
750     # Fast (28fps)
751     if [ "$profile" == "xvid" ]; then
752       handbrake_opts[0]="-f avi"
753       handbrake_opts[1]="-b $target_video_bitrate"
754       handbrake_opts[2]="-e ffmpeg"
755       handbrake_opts[3]="-T"
756     fi
757   fi
758
759   # MP4 || MKV profile
760   if [[ "$profile" =~ "mp4" ]] || [[ "$profile" =~ "mkv" ]]; then
761     found_profile=1
762     handbrake_cli="$handbrake_mp4"
763     [[ "$profile" =~ "mp4" ]] && final_output_file="$dest/$dvdname.mp4"
764     [[ "$profile" =~ "mkv" ]] && final_output_file="$dest/$dvdname.mkv" 
765     PASSES="$PASSES -T"
766
767     # Handle custom parameter overrides
768     if [ $custom_video_bitrate == 1 ]; then
769       handbrake_opts[0]="-b $target_video_bitrate"
770     fi
771     if [ $custom_audio_2ch == 0 ]; then
772       audio_2ch=0
773     fi
774     if [ $custom_audio_6ch == 0 ]; then
775       audio_6ch=0
776     fi
777
778     # Very High Quality
779     if [ "$profile" == "mp4vhq" ]; then
780       profile="hb_High_Profile"
781     fi
782     # High Quality
783     if [ "$profile" == "mp4hq" ]; then
784       profile="hb_Normal"
785     fi
786     # Fast
787     if [ "$profile" == "mp4" ]; then
788       profile="hb_Classic"
789     fi
790   fi
791
792   # iphone and ipod MP4 profiles
793   if [ "$profile" == "iphone" ] || [ "$profile" == "ipod" ]; then
794     found_profile=1
795     handbrake_cli="$handbrake_mp4"
796     final_output_file="$dest/$dvdname.mp4"
797     PASSES=""
798
799     # Handle custom parameter overrides
800     if [ $custom_video_bitrate == 1 ]; then
801       handbrake_opts[0]="-b $target_video_bitrate"
802     fi
803     if [ $custom_audio_2ch == 0 ]; then
804       audio_2ch=0
805     fi
806     if [ $custom_audio_6ch == 0 ]; then
807       audio_6ch=0
808     fi
809
810     # iphone
811     if [ "$profile" == "iphone" ]; then
812       profile="hb_iPhone_&_iPod_Touch"
813     fi
814     # ipod
815     if [ "$profile" == "ipod" ]; then
816       profile="hb_iPod"
817     fi
818
819   fi
820   
821   # Predefined Handbrake Profile Handling
822   if [[ "$profile" =~ "hb" ]]; then
823     found_profile=1
824     handbrake_cli="$handbrake_mp4"
825     final_output_file="$dest/$dvdname.mp4"
826
827     # Handle custom parameter overrides
828     if [ $custom_video_bitrate == 1 ]; then
829       handbrake_opts[0]="-b $target_video_bitrate"
830     fi
831     if [ $custom_audio_2ch == 0 ]; then
832       audio_2ch=0
833     fi
834     if [ $custom_audio_6ch == 0 ]; then
835       audio_6ch=0
836     fi
837     
838     # extract the HandBrake Profile name from $profile
839     hb_profile=`echo "$profile" | sed 's/hb_//g' | sed 's/_/ /g'`
840   fi
841
842   # Make sure we found a handler for the given profile
843   if [ $found_profile -eq 0 ]; then
844     fatal_and_exit "-E- Unable to find a profile handler for profile: $profile"
845   fi
846
847   # setup our audio option
848   if [ $audio_2ch -eq 1 ] && [ $audio_6ch -eq 1 ]; then
849     handbrake_audio_opts="-E faac,ac3 -6 dpl2,auto"
850   fi
851   if [ $audio_6ch -eq 1 ] && [ $audio_2ch -eq 0 ]; then
852     handbrake_audio_opts="-E ac3 -6 auto"
853   fi
854   if [ $audio_2ch -eq 1 ] && [ $audio_6ch -eq 0 ]; then
855     handbrake_audio_opts="-E faac -6 dpl2"
856   fi
857   if [ -n "$track" ]; then
858     handbrake_audio_opts="$handbrake_audio_opts -a $track"
859   fi
860
861   # Convert our array of opts into a string
862   for OPTS in "${video_encoder_opts[@]}"; do 
863     handbrake_video_encoder_opts="$handbrake_video_encoder_opts:$OPTS"
864   done
865   if [ -n "$handbrake_video_encoder_opts" ]; then
866     handbrake_video_encoder_opts="-x $handbrake_video_encoder_opts"
867   fi
868   for OPTS in "${handbrake_opts[@]}"; do 
869     handbrake_cmd_line_opts="$handbrake_cmd_line_opts $OPTS"
870   done
871
872   # Append "global" command line options
873   handbrake_cmd_line_opts="$handbrake_cmd_line_opts -v 1 -m"
874   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $PASSES"
875   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $DRC"
876   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $SCALE"
877   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $SIZE"
878   handbrake_cmd_line_opts="$handbrake_cmd_line_opts $AUDIO_BITRATE"
879
880   # Execute the handbrake command to encode the video
881   # I have to copy-n-paste the code below to handle the 2 conditions, 1) hb_profile (mp4) 2) no hb_profile (xvid)
882   # The problem is the -Z "$hb_profile" option. I have to quote the "$hb_profile" due to spaces in it, forcing me to call it out explicity.
883   if [ -n "$hb_profile" ]; then
884     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"
885     $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
886     handbrake_retval=$?
887   else 
888     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"
889     $handbrake_cli -i "$vobfile" -o "$final_output_file" $handbrake_cmd_line_opts $handbrake_audio_opts $handbrake_video_encoder_opts >> $encodelog 2>&1
890     handbrake_retval=$?
891   fi
892   if [ $handbrake_retval != 0 ]; then
893     fatal_and_exit "-E- Unhandled handbrake error"
894   fi
895
896   
897   # SRC = ISO and FINAL = MP4
898   # Extract the chapters from the ISO/VOB so we can add them to the MP4 file. 
899   # We can only do this if we have an ISO file and we made an MP4 file.
900   if [[ "$final_output_file" =~ "mp4" ]] && [[ -e "$isofile" ]]; then
901     chapter_tmpfile="$tmpdir/$dvdname.chapters"
902     $dvdxchap -t $feature_title "$isofile" > "$chapter_tmpfile"
903     $mp4box -chap "$chapter_tmpfile" "$final_output_file"
904
905     # We could also add subtitles, but we would need to follow this guide to do it:
906     # http://ubuntuforums.org/showthread.php?t=1253635
907     # http://en.gentoo-wiki.com/wiki/Ripping_DVD_to_Matroska_and_H.264
908
909   fi
910
911   # SRC = ISO and FINAL = MKV
912   if [[ "$final_output_file" =~ "mkv" ]] && [[ -e "$isofile" ]]; then
913     chapter_tmpfile="$tmpdir/$dvdname.chapters"
914     $dvdxchap -t $feature_title "$isofile" > "$chapter_tmpfile"
915     $mkvpropedit -c "$chapter_tmpfile" "$final_output_file"
916   fi
917
918   # SRC = MKV and FINAL = MP4
919   if [[ "$final_output_file" =~ "mp4" ]] && [[ "$vobfile" =~ "mkv" ]]; then
920     # Extract the chapters from the src and apply to the dst
921     chapter_tmpfile="$tmpdir/$dvdname.xml"
922     $mkvextract chapters "$vobfile" > "$chapter_tmpfile"
923     $mp4box -chap "$chapter_tmpfile" "$final_output_file"
924   fi
925
926   # SRC = MKV and FINAL = MKV
927   # If our original src file was an MKV, extract the chapters and subtitles from it
928   if [[ "$final_output_file" =~ "mkv" ]] && [[ "$vobfile" =~ "mkv" ]]; then
929     # Extract the chapters from the src and apply to the dst
930     chapter_tmpfile="$tmpdir/$dvdname.xml"
931     $mkvextract chapters "$vobfile" > "$chapter_tmpfile"
932     $mkvpropedit -c "$chapter_tmpfile" "$final_output_file"
933
934     # find out what our default_alang subtitle track is in the src
935     get_subtitle_track_from_mkv "$vobfile" "$handbrake_mp4"
936
937     # Extract the subtitles from the src and apply to the dst
938     srt_tmpfile="$tmpdir/$dvdname.srt"
939     sub_tmpfile="$tmpdir/$dvdname.sub"
940     idx_tmpfile="$tmpdir/$dvdname.idx"
941     $mkvextract tracks "$vobfile" $track:$srt_tmpfile
942     $mkvmerge -o "$final_output_file.subs" "$final_output_file" "$idx_tmpfile"
943     mv "$final_output_file.subs" "$final_output_file"
944
945     # Set the default subtitle track to "no subtitles" in the dst
946     $mkvpropedit "$final_output_file" --edit track:s1 --set flag-default=0 
947   fi
948
949   # Remove intermediary file if we created one   
950   if [ $keep_intermediate_files -eq 0 ]; then
951       [[ -e "$chapter_tmpfile" ]] && rm "$chapter_tmpfile"
952       [[ -e "$idx_tmpfile" ]] && rm "$idx_tmpfile" 
953       [[ -e "$sub_tmpfile" ]] && rm "$sub_tmpfile"
954   else
955       [[ -e "$chapter_tmpfile" ]] && echo "-> Keeping intermediate chapter file: $chapter_tmpfile" | tee -a "$logfile"
956       [[ -e "$idx_tmpfile" ]] && echo "-> Keeping intermediate subtitle files: $idx_tmpfile $sub_tmpfile" | tee -a "$logfile"
957   fi
958
959   # Concatenate the encode log to our main log file, greping out unwanted lines
960   cat $encodelog | grep -v "Encoding:" | grep -v "hb_demux_ps" >> "$logfile" 
961   cat $encodelog | grep "Encoding:" | sed 's/\r/\n/g' | grep "Encoding:" | grep "ETA" | head -1 >> "$logfile"
962   cat $encodelog | grep "Encoding:" | sed 's/\r/\n/g' | grep "Encoding:" | grep "ETA" | tail -1 >> "$logfile"
963 }
964
965 # encode the vob file into a compressed file format using mencoder
966 function encode_vob_file_mencoder {
967
968   # Set a variable that we will use later to determine if we found a handler for $profile or not
969   typeset -i found_profile=0
970
971   # For a given profile, to override the 2 pass behavior to be single pass,
972   # simply set the PASSES variable below to "2" instead of "1 2" inside your profile handler. 
973   # It indicates which PASS numbers to loop over. PASSES="2" means just do pass 2 => single pass mode.
974   PASSES="1 2"
975
976   # Declare our default 2 pass variables
977   passlogfile_opt="-passlogfile $passlogfile"
978   pass_opt="pass=%PASS"
979
980   # Check the global force_onepass_mode. If it is set, change our variables appropriately
981   # to force 1-pass encoding across all profiles.
982   if [ $force_onepass_mode -eq 1 ]; then
983     PASSES="2"
984     passlogfile_opt=""
985     pass_opt=""    
986   fi
987
988   # XVID profile
989   if [[ "$profile" =~ "xvid" ]]; then
990     found_profile=1
991     final_output_file="$dest/$dvdname.avi"
992     mencoder_general_opts="$lang_opts $passlogfile_opt"
993     mencoder_output_opts="-ofps 30000/1001 -ffourcc DIVX"
994     mencoder_video_filter_opts="-vf pullup,softskip,hqdn3d=2:1:2$CROP$SCALE"
995     mencoder_video_encoder_opts="-ovc xvid -xvidencopts $pass_opt"
996
997     # Very High Quality (16fps)
998     if [ "$profile" == "xvidvhq" ]; then
999       video_encoder_opts[0]="bitrate=$target_video_bitrate"
1000       video_encoder_opts[1]="threads=$mencoder_threads"
1001       video_encoder_opts[2]="chroma_opt"
1002       video_encoder_opts[3]="vhq=4"
1003       video_encoder_opts[4]="bvhq=1"
1004       video_encoder_opts[5]="quant_type=mpeg"
1005       video_encoder_opts[6]="autoaspect"
1006     fi
1007     # High Quality (20fps)
1008     if [ "$profile" == "xvidhq" ]; then
1009       video_encoder_opts[0]="bitrate=$target_video_bitrate"
1010       video_encoder_opts[1]="threads=$mencoder_threads"
1011       video_encoder_opts[2]="chroma_opt"
1012       video_encoder_opts[3]="vhq=2"
1013       video_encoder_opts[4]="bvhq=1"
1014       video_encoder_opts[5]="quant_type=mpeg"
1015       video_encoder_opts[6]="autoaspect"
1016     fi
1017     # Fast (28fps)
1018     if [ "$profile" == "xvid" ]; then
1019       video_encoder_opts[0]="bitrate=$target_video_bitrate"
1020       video_encoder_opts[1]="threads=$mencoder_threads"
1021       video_encoder_opts[2]="vhq=0"
1022       video_encoder_opts[3]="turbo"
1023       video_encoder_opts[4]="autoaspect"
1024     fi
1025
1026     for OPTS in "${video_encoder_opts[@]}"; do 
1027       mencoder_video_encoder_opts="$mencoder_video_encoder_opts:$OPTS"
1028     done
1029
1030     if [ $audio_2ch -eq 0 ]; then
1031       # These options produce good 6 channel audio for linux and windows
1032       mencoder_audio_opts="-oac copy"
1033       # There are 3 different ways to specify 6 channel encoding. We'll try the other ones in order if one of them fails.
1034       mencoder_audioch_opts[0]="-channels 6 -af channels=6"
1035       mencoder_audioch_opts[1]="-af channels=6"
1036       mencoder_audioch_opts[2]=""
1037     else
1038       # These options produce good 2 channel audio for linux and windows (including the internal mythvideo player)
1039       mencoder_audio_opts="-oac mp3lame -lameopts cbr:br=$target_audio_bitrate"
1040       mencoder_audioch_opts[0]=""
1041     fi
1042  
1043   fi
1044
1045   # iphone and ipod MP4 profiles
1046   if [ "$profile" == "iphone" ] || [ "$profile" == "ipod" ]; then
1047     found_profile=1
1048     if [ "$profile" == "iphone" ]; then
1049       # SCALE: 480x320
1050       # scale width to 480, set height appropriately, but keep a multiple of 16
1051       #SCALE=",scale=480:-10"
1052       # scale the video down however far is necessary to fit in 480x320
1053       SCALE=",dsize=480:320:0,scale=-8:-8"
1054     else
1055       # SCALE: 320x240
1056       # scale width to 320, set height appropriately, but keep a multiple of 16
1057       #SCALE=",scale=320:-10"
1058       # scale the video down however far is necessary to fit in 320x240
1059       SCALE=",dsize=320:240:0,scale=-8:-8"
1060     fi
1061     final_output_file="$dest/$dvdname.mp4"
1062     mencoder_general_opts="$lang_opts $passlogfile_opt"
1063     mencoder_output_opts="-ofps 30000/1001 -sws 9 -of lavf -lavfopts format=mp4"
1064     mencoder_video_filter_opts="-vf harddup$CROP$SCALE";
1065     mencoder_video_encoder_opts="-ovc x264 -x264encopts $pass_opt"
1066     video_encoder_opts[0]="bitrate=$target_video_bitrate"
1067     video_encoder_opts[1]="threads=$mencoder_threads"
1068     video_encoder_opts[2]="vbv_maxrate=1500"
1069     video_encoder_opts[3]="vbv_bufsize=2000"
1070     video_encoder_opts[4]="nocabac"
1071     video_encoder_opts[5]="me=umh"
1072     video_encoder_opts[6]="subq=6"
1073     video_encoder_opts[7]="frameref=6"
1074     video_encoder_opts[8]="trellis=1"
1075     video_encoder_opts[9]="level_idc=30"
1076     video_encoder_opts[10]="global_header"
1077     video_encoder_opts[11]="bframes=0"
1078     video_encoder_opts[12]="partitions=all"
1079     for OPTS in "${video_encoder_opts[@]}"; do 
1080       mencoder_video_encoder_opts="$mencoder_video_encoder_opts:$OPTS"
1081     done
1082
1083     mencoder_audio_opts="-oac faac -faacopts mpeg=4:object=2:br=$target_audio_bitrate:raw"
1084     mencoder_audioch_opts[0]="-channels 2 -srate 48000"
1085   fi
1086
1087   if [ $found_profile -eq 0 ]; then
1088     fatal_and_exit "-E- Unable to find a profile handler for profile: $profile"
1089   fi
1090
1091   # Do not edit this line. $mencoder_video_encoder_opts must be last
1092   mencoder_opts="$mencoder_general_opts $mencoder_output_opts $mencoder_audio_opts $mencoder_video_filter_opts $mencoder_video_encoder_opts"
1093   mencoder_retval=0
1094
1095   for PASS in $PASSES
1096   do 
1097     # Set some options based on which pass we are in
1098     mencoder_opts_for_pass=$(echo "$mencoder_opts" | sed "s,%PASS,$PASS,g")
1099     [ $PASS -eq 1 ] && mencoder_opts_for_pass="$mencoder_opts_for_pass:turbo"
1100     [ $PASS -eq 1 ] && output_file="/dev/null"
1101     [ $PASS -eq 2 ] && output_file="$final_output_file"
1102   
1103     # It's possible that the audio channel encoding may not work. Cycle through all our different audioch_opts until we find one that works.
1104     for CH_OPTS in "${mencoder_audioch_opts[@]}"; 
1105     do
1106       echo -e "   Encoding pass $PASS"
1107       echo -e "\n   Encoding pass $PASS: mencoder $CH_OPTS $mencoder_opts_for_pass \"$vobfile\" -o \"$output_file\" >> $encodelog 2>&1" >> "$logfile"
1108       mencoder $CH_OPTS $mencoder_opts_for_pass "$vobfile" -o "$output_file" > $encodelog 2>&1
1109       mencoder_retval=$? 
1110       grep -q "\[channels\] Invalid" $encodelog
1111       if [ $? != 0 ]; then          
1112         break;
1113       else
1114         echo -e "\n-W- Audio channel encoding error. Falling back to next audio channel encoding scheme." >> "$logfile"
1115       fi
1116     done
1117       
1118     if [ $mencoder_retval != 0 ]; then
1119       fatal_and_exit "-E- Unhandled mencoder error"
1120     fi
1121
1122     # Concatenate the encode log to our main log file, greping out unwanted lines
1123     cat $encodelog | grep -v "^Pos:" | grep -v "duplicate" >> "$logfile"
1124
1125   done
1126 }
1127
1128 function make_dvd_mkv_image {
1129     dstmkv="$1"
1130     srctype="$2"
1131     srcname="$3"
1132     dstdir=${dstmkv%.[^.]*}
1133     ((min_length = minimum_feature_title_length * 60))
1134
1135     echo -e "\n   Ripping: $makemkv mkv --minlength=$min_length --decrypt --progress=-same $srctype:$srcname all $dstdir"
1136     mkdir -p "$dstdir"
1137     $makemkv mkv --minlength=$min_length --decrypt --progress=-same $srctype:$srcname all $dstdir 2>&1 | tee -a "$ddrescuelog"
1138     makemkv_retval=$?
1139     
1140     if [ $makemkv_retval != 0 ]; then
1141         fatal_and_exit "-E- Unhandled makemkv error"
1142     fi
1143
1144     if [ $makemkv_copy_largest_title_only -eq 1 ]; then
1145       # Move the largest created MKV file to destination
1146       # There might be multiple ones, so just grab the largest one
1147       largest_mkv_file=`/bin/ls -1S "$dstdir"/*.mkv | head -1`
1148       echo -e "\n   Moving largest mkv file $largest_mkv_file -> $dstmkv\n" | tee -a "$ddrescuelog"
1149       mv "$largest_mkv_file" "$dstmkv"
1150     else
1151       # Move all of the created MKV files to destination
1152       echo "\n" | tee -a "$ddrescuelog"
1153       dstfile=${dstmkv%.[^.]*}
1154       typeset -i num=0
1155       typeset -i titles=0
1156       for i in `/bin/ls -1 "$dstdir"/*.mkv`; do
1157         ((titles = titles + 1))
1158       done
1159       if [[ $titles > 1 ]]; then
1160         for i in `/bin/ls -1 "$dstdir"/*.mkv`; do
1161           echo -e "   Moving $i -> $dstfile.$num.mkv" | tee -a "$ddrescuelog"
1162           mv "$i" "$dstfile.$num.mkv"
1163           ((num = num + 1 ))
1164         done
1165       else 
1166          echo -e "  Moving $dstdir/*.mkv -> $dstfile.mkv" | tee -a "$ddrescuelog"
1167          mv "$dstdir"/*.mkv "$dstfile.mkv"
1168       fi
1169       echo "\n" | tee -a "$ddrescuelog"
1170     fi
1171
1172     if [ $? != 0 ]; then
1173         fatal_and_exit "-E- Unhandled mv error"
1174     fi
1175     if [ $keep_intermediate_files -eq 0 ]; then
1176         [[ -d "$dstdir" ]] && rm -rf "$dstdir"
1177     fi
1178
1179     # Concatenate the encode log to our main log file, greping out unwanted lines
1180     cat "$ddrescuelog" | grep -v "Current progress:" >> "$logfile"    
1181 }
1182
1183 function make_dvd_mkv_image_from_folder {
1184     src="$1"
1185     dst="$2"
1186     handle_error=$3
1187     dstdir=${dst%.[^.]*}
1188     make_dvd_mkv_image "$dst" "file" "$src"
1189 }
1190
1191 function make_dvd_iso_image {
1192
1193   isofile="$1"
1194
1195   # check to see if we have a dvdpath to rip from instead of $dev
1196   if [ -z "$dvdpath" ]; then
1197     # load the CSS codes in the DVD drive 
1198     lsdvd_css "$dev"
1199     if [ $? != 0 ]; then
1200       fatal_and_exit "-E- lsdvd $dev failed" 
1201     fi
1202
1203     # read the DVD, ignoring/skipping CRC errors
1204     ddrescue -n -b 2048 $dev "$isofile" "$ddrescuelog"
1205     if [ $? != 0 ]; then
1206       fatal_and_exit "-E- ddrescue -n -b 2048 $dev \"$isofile\" failed"
1207     fi
1208     cat "$ddrescuelog" >> "$logfile"
1209   else
1210     # rip from a path instead
1211     make_dvd_iso_image_from_folder "$dvdpath" "$isofile" 1
1212   fi
1213 }
1214
1215 function make_dvd_iso_image_from_folder {
1216   
1217   src="$1"
1218   dst="$2"
1219   handle_error=$3
1220   
1221   echo "-> Creating ISO image of DVD video: $src -> $dst" | tee -a "$logfile"
1222
1223   # make an iso image out of our directory
1224   echo "   mkisofs -dvd-video \"$src\" 2>> \"$dumplog\" | dd of=\"$dst\" obs=32k seek=0 > /dev/null 2>> $dumplog" >> "$logfile"
1225   mkisofs -dvd-video "$src" 2>> "$dumplog" | dd of="$dst" obs=32k seek=0 > /dev/null 2>> "$dumplog"
1226
1227   # set the audio languages from the iso if it exists and is non-zero in size
1228   if [ -s "$dst" ]; then
1229     get_feature_title "$dst"
1230     get_audio_id_from_iso "$dst"
1231   fi
1232
1233   # make sure we were able to create the iso image from the folder given to us
1234   if [ ! -s "$dst" ] && [ $handle_error -eq 1 ]; then
1235     echo "-> Unable to make an iso image from the DVD folder: $dvdpath"
1236     echo "   Falling back to mplayer to create a main feature VOB from the folder instead: $dvdpath"
1237     # remove the bad iso file
1238     [[ -e "$dst" ]] && rm -f "$dst"
1239     # get the feature title from the DVD folder
1240     get_feature_title "$dvdpath"
1241     # create our main VOB file from the ISO
1242     create_main_vob_with_mplayer "$dvdpath" 
1243     # get our audio id from the VOB file
1244     get_audio_id_from_vob "$vobfile"
1245   fi
1246 }
1247
1248 function make_dvdbackup_folder_image {
1249   # extract the feature title from the DVD image
1250   echo "-> Extracting feature title using dvdbackup" | tee -a "$logfile"
1251   [[ -d "$tmpdir/$dvdname" ]] && rm -rf "$tmpdir/$dvdname"
1252   dvdbackup -F -i "$isofile" -o "$tmpdir" >> "$logfile"
1253   if [ $? != 0 ]; then
1254     fatal_and_exit '-E- dvdbackup -F -i "$isofile" -o "$tmpdir" failed'
1255   fi
1256 }
1257
1258 function make_dvdauthor_folder_image {
1259   # create a new DVD video of the feature title
1260   echo "-> Creating DVD video $dest/$dvdname" | tee -a "$logfile"
1261   [[ -d "$dest/$dvdname" ]] && rm -rf "$dest/$dvdname"
1262   dvdauthor -o "$dest/$dvdname" -x dvd.xml > $dvdauthorlog 2>&1
1263   cat $dvdauthorlog | grep -v "VOBU" >> "$logfile"
1264
1265   # There is a chance that dvdauthor won't like some of the VOBs.
1266   # We can't tell ahead of time which ones it will choke on. 
1267   # So, we need to run it over and over again until it can process
1268   # all the VOBs. If it can't handle one of them, run it through
1269   # mencoder to fix it and try again. These errors are typically
1270   # present due to the copy protection that ddrescue removed.
1271   grep -q "SCR moves" $dvdauthorlog
1272   while [ $? == 0 ]; do
1273     # fix bad vobs that get the "SCR moves backwards" error:
1274     #  STAT: Processing VTS_01_0.VOB...
1275     #  ERR:  SCR moves backwards, remultiplex input.
1276     badvob=`grep -v "^WARN:" $dvdauthorlog | grep -B 1 "SCR moves" | grep "Processing" | awk '{ print $3 }' | sed -e 's/\.\.\.//'`
1277     if [[ ! -f "$badvob" ]]; then
1278       fatal_and_exit "-E- Found a bad VOB, but could not extract it's name properly: $badvob"
1279     fi
1280     echo "-> Fixing SCR errors in DVD video file $badvob" | tee -a "$logfile"
1281     cat $badvob | mencoder $lang_opts -quiet -of mpeg -mpegopts format=dvd -oac copy -ovc copy - -o $badvob.fixed >> "$logfile" 2>&1
1282     mv -f $badvob.fixed $badvob
1283     echo "-> Creating DVD video $dest/$dvdname"
1284     dvdauthor -o "$dest/$dvdname" -x dvd.xml > $dvdauthorlog 2>&1
1285     cat $dvdauthorlog | grep -v "VOBU" >> "$logfile"
1286     grep -q "SCR moves" $dvdauthorlog
1287   done
1288 }
1289
1290 function get_feature_title {
1291   source="$1"
1292   # if a feature title was given on the command line, use it
1293   if [ $feature_title_override -ne 0 ]; then
1294     feature_title=$feature_title_override
1295     return 0
1296   fi
1297   # otherwise, use lsdvd to figure it out
1298   if [ $ripdvd -eq 1 ]; then
1299     lsdvd_longest_title "$dev" 
1300   else 
1301     lsdvd_longest_title "$source"
1302   fi
1303 }
1304
1305 function create_main_vob_with_cat {
1306   # cd to the feature title DVD folder
1307   pushd "$tmpdir/$dvdname/VIDEO_TS" > /dev/null 2>&1
1308   if [ $? != 0 ]; then
1309     fatal_and_exit "-E- Unable to cd to $tmpdir/$dvdname/VIDEO_TS"
1310   fi
1311
1312   # concatenate all the VOBs together into 1 giant VOB
1313   vobs=`/bin/ls -1 VTS*.VOB | grep -v "0.VOB" | tr '\n' ' '`
1314   cat $vobs > "$tmpdir/$dvdname.VOB"
1315
1316   # cd back to the dir we started from
1317   popd > /dev/null 2>&1
1318 }
1319
1320 function create_main_vob_with_mplayer {
1321
1322   # argument processing  
1323   source="$1"
1324   remove_dumplog=$2
1325
1326   # make sure we have a valid feature title
1327   if [ $invalid_feature_title -eq 1 ] && [ $feature_title_override -eq 0 ]; then
1328     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."
1329   fi
1330
1331   # check to make sure we didn't detect an mplayer dumpstream incompatibility earlier
1332   if [ $mplayer_dumpstream_incompatibility -eq 1 ]; then
1333     msg="-E- We detected an mplayer dumpstream incompatibility earlier."
1334     msg="$msg We also detected a condition that may require you to use dumpstream. "
1335     msg="$msg\n    Unable to rip this DVD in the mode you requested."
1336     fatal_and_exit "$msg"
1337   fi
1338
1339   # use mplayer to create the main VOB file
1340   echo "-> Using mplayer to dump the DVD feature title $feature_title to a VOB file directly: $vobfile" | tee -a "$logfile"
1341   echo "   mplayer $lang_opts -dumpstream -dumpfile \"$vobfile\" -dvd-device \"$source\" dvd://$feature_title > $dumplog 2>&1" >> "$logfile"
1342   mplayer $lang_opts -dumpstream -dumpfile "$vobfile" -dvd-device "$source" dvd://$feature_title > $dumplog 2>&1
1343   if [ $? != 0 ]; then
1344     cat $dumplog | grep -v "^A:" >> "$logfile"
1345     fatal_and_exit "-E- Mplayer Failed"
1346   fi
1347   cat $dumplog | grep -v "^A:" >> "$logfile"
1348   [[ -e "$dumplog" ]] && [[ $remove_dumplog -eq 1 ]] && rm -f $dumplog
1349 }
1350
1351 function get_audio_id_from_iso {
1352   # Adjust our audio ID to find the english audio stream
1353   # This should be 128. However, if 128 is not there, pick the next one that incrementally is.
1354   iso="$1"
1355   aidcheck=`tempfile`
1356   aid=$default_aid
1357   alang=$default_alang
1358   if [ $aid_override -lt 0 ]; then 
1359     mplayer -v -endpos 0 -dvd-device "$iso" dvd://$feature_title > $aidcheck 2>&1
1360     grep -q "aid: $aid" $aidcheck
1361     while [ $? == 1 ] && [ $aid -lt 159 ]; do
1362       (( aid = aid + 1 ))
1363       grep -q "aid: $aid" $aidcheck
1364     done
1365     [[ -e "$aidcheck" ]] && rm -f "$aidcheck"
1366   else
1367     aid=$aid_override
1368   fi
1369   echo "-> Setting the audio stream ID to $aid" | tee -a "$logfile"
1370   # mencoder default DVD audio track language selection (english)
1371   lang_opts="-aid $aid -alang $alang"
1372 }
1373
1374 function get_crop_from_iso { 
1375   FRAMES=10000
1376   echo "-> Detecting black frame border crop value from ISO file"
1377   echo "   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark -dvd-device \"$isofile\" dvd://$feature_title > $dumplog 2>&1" >> "$logfile"
1378   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark -dvd-device "$isofile" dvd://$feature_title > $dumplog 2>&1
1379   [[ -e "md5sums" ]] && rm -f "md5sums"
1380   CROP=`cat $dumplog | grep CROP | tail -1`
1381   echo "   Found crop value of $CROP" >> "$logfile"
1382   CROP=${CROP#* crop=}
1383   CROP=${CROP%%\).*}
1384   typeset -i CROPCHECK
1385   CROPCHECK=`echo "$CROP" | awk -F ':' '{ print $1 }'`
1386   echo "   Final crop value of $CROP with cropcheck value of $CROPCHECK" >> "$logfile"
1387   if [ -z "$CROP" ]; then
1388     echo "-W- Unable to extract CROP value from iso: $isofile" | tee -a "$logfile"
1389     return
1390   fi
1391   if [ $CROPCHECK -lt 0 ]; then 
1392     CROP=""
1393   else 
1394     CROP=",crop=$CROP"
1395   fi
1396   echo "   Setting mencoder crop filter to: $CROP"
1397 }
1398
1399 function get_crop_from_vob { 
1400   FRAMES=10000
1401   echo "-> Detecting black frame border crop value from VOB file"
1402   echo "   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark \"$vobfile\" > $dumplog 2>&1" >> "$logfile"
1403   mplayer -vf cropdetect -frames $FRAMES -nosound -vo md5sum -benchmark "$vobfile" > $dumplog 2>&1
1404   [[ -e "md5sums" ]] && rm -f "md5sums"
1405   CROP=`cat $dumplog | grep CROP | tail -1`
1406   echo "   Found crop value of $CROP" >> "$logfile"
1407   CROP=${CROP#* crop=}
1408   CROP=${CROP%%\).*}
1409   typeset -i CROPCHECK
1410   CROPCHECK=`echo "$CROP" | awk -F ':' '{ print $1 }'`
1411   echo "   Final crop value of $CROP with cropcheck value of $CROPCHECK" >> "$logfile"
1412   if [ -z "$CROP" ]; then
1413     echo "-W- Unable to extract CROP value from iso: $isofile" | tee -a "$logfile"
1414     return
1415   fi
1416   if [ $CROPCHECK -lt 0 ]; then 
1417     CROP=""
1418   else 
1419     CROP=",crop=$CROP"
1420   fi
1421   echo "   Setting mencoder crop filter to: $CROP"
1422 }
1423
1424 function get_audio_track_from_mkv { 
1425   mkv="$1"
1426   handbrake_cli="$2"
1427   aidcheck=`tempfile`
1428   alang=$default_alang
1429
1430   # Find out what audio track matches our alang
1431   $handbrake_cli --stop-at duration:1 -i "$mkv" -o /dev/null -v 100 > $aidcheck 2>&1
1432   stream=`grep "$alang" $aidcheck | grep "Audio:"`
1433
1434   # extract the track number that handbrake uses
1435   track=`echo "$stream" | awk '{ print $2; }' | awk -F '.' '{ print $2; }' | awk -F '(' '{ print $1; }'`
1436   
1437   if [ -n "$track" ]; then   
1438       echo "   Setting the audio track to $track." | tee -a "$logfile"
1439   fi
1440 }
1441
1442 function get_subtitle_track_from_mkv { 
1443   mkv="$1"
1444   handbrake_cli="$2"
1445   aidcheck=`tempfile`
1446   alang=$default_alang
1447
1448   # Find out what audio track matches our alang
1449   $handbrake_cli --stop-at duration:1 -i "$mkv" -o /dev/null -v 100 > $aidcheck 2>&1
1450   stream=`grep "$alang" $aidcheck | grep "Subtitle:" | head -n 1`
1451
1452   # extract the track number that handbrake uses
1453   track=`echo "$stream" | awk '{ print $2; }' | awk -F '.' '{ print $2; }' | awk -F '(' '{ print $1; }'`
1454
1455   # add 1 to the track number since mkv tools start at 1, and HandBrake starts at 0
1456   ((track = track + 1))
1457
1458   if [ -n "$track" ]; then   
1459       echo "   Setting the subtitle track to $track." | tee -a "$logfile"
1460   fi
1461 }
1462
1463 function get_audio_track_from_vob {
1464   # Adjust our audio ID to find the english audio stream
1465   # This should be 128. However, if 128 is not there, pick the next one that incrementally is.
1466   vob="$1"
1467   handbrake_cli="$2"
1468   aidcheck=`tempfile`
1469   aid=$default_aid
1470   alang=$default_alang
1471   if [ $aid_override -lt 0 ]; then 
1472     mplayer -v -endpos 0 "$vob" > $aidcheck 2>&1
1473     grep -q "Found audio stream: $aid" $aidcheck
1474     while [ $? == 1 ] && [ $aid -lt 159 ]; do
1475       (( aid = aid + 1 ))
1476       grep -q "Found audio stream: $aid" $aidcheck
1477     done
1478     [[ -e "$aidcheck" ]] && rm -f "$aidcheck"
1479   else 
1480     aid=$aid_override
1481   fi
1482   # Now that we've found the right audio id, find the corresponding audio track in HandBrake
1483
1484   # convert the aid we found into hex
1485   aid_hex=`echo "obase=16; $aid" | bc`
1486   
1487   # extract the audio streams in the vob
1488   #ffmpeg -i "$vob" > $aidcheck 2>&1
1489   $handbrake_cli --stop-at duration:1 -i "$vob" -o /dev/null -v 100 > $aidcheck 2>&1
1490   
1491   # find the stream that matches our aid
1492   #stream=`grep "Stream.*\[0x$aid_hex\]" $aidcheck`
1493   #stream=`grep "scan: audio" $aidcheck | grep -n "" | grep "scan: audio 0x$aid_hex"`
1494   stream=`grep "add_audio_to_title:" $aidcheck | grep -n "" | grep "add_audio_to_title:.* stream 0x$aid_hex"`
1495  
1496   # extract the track number that handbrake uses
1497   #track=`expr match "$stream" '.*#[0-9]\.\([0-9]*\)'`
1498   track=`expr match "$stream" '^\([0-9]*\):'`
1499
1500   if [ -n "$track" ]; then   
1501     echo "   Setting the audio ID to $aid. Setting the audio track to $track." | tee -a "$logfile"
1502   fi
1503 }
1504
1505 function get_audio_id_from_vob {
1506   # Adjust our audio ID to find the english audio stream
1507   # This should be 128. However, if 128 is not there, pick the next one that incrementally is.
1508   vob="$1"
1509   aidcheck=`tempfile`
1510   aid=$default_aid
1511   alang=$default_alang
1512   if [ $aid_override -lt 0 ]; then 
1513     mplayer -v -endpos 0 "$vob" > $aidcheck 2>&1
1514     grep -q "Found audio stream: $aid" $aidcheck
1515     while [ $? == 1 ] && [ $aid -lt 159 ]; do
1516       (( aid = aid + 1 ))
1517       grep -q "Found audio stream: $aid" $aidcheck
1518     done
1519     [[ -e "$aidcheck" ]] && rm -f "$aidcheck"
1520   else 
1521     aid=$aid_override
1522   fi
1523   echo "-> Setting the audio stream ID to $aid" | tee -a "$logfile"
1524   # mencoder default DVD audio track language selection (english)
1525   lang_opts="-aid $aid -alang $alang"
1526 }
1527
1528 function check_vob_for_corrupted_start {
1529   # check to see if the beginning of the DVD has a form of copy protection
1530   # where they have deliberately broken the first X number of frames of the DVD.
1531   # If we don't skip these, our resulting VOB file will not play.
1532   badvobcheck=`tempfile`
1533   endpos=360
1534   skip=0
1535   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
1536   if [ $? != 0 ]; then
1537     fatal_and_exit "-E- Mencoder Failed"
1538   fi
1539   grep "Writing header" -A `wc $badvobcheck | awk '{ print $1 }'` $badvobcheck | grep -q "Too many video packets in the buffer"
1540   while [ $? == 0 ] && [ $skip -lt $endpos ]; do
1541     (( skip = skip + 5 ))
1542     echo "-> Bad VOB copy protection detected. Trying new skip value of $skip" | tee -a "$logfile"
1543     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
1544     if [ $? != 0 ]; then
1545       fatal_and_exit "-E- Mencoder Failed"
1546     fi
1547     grep "Writing header" -A `wc $badvobcheck | awk '{ print $1 }'` $badvobcheck | grep -q "Too many video packets in the buffer"
1548   done
1549   [[ -e "$badvobcheck" ]] && rm -f "$badvobcheck";
1550
1551   # cat the giant VOB into mencoder to create a playable VOB file
1552   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
1553   if [ $? != 0 ]; then
1554     fatal_and_exit "-E- Mencoder Failed"
1555   fi
1556 }
1557
1558 function check_vob_for_completeness {
1559   # check to make sure we got out a complete VOB.
1560   # there is another kind of copy protection where the VOB's may
1561   # have "MPG EOF" frames in the middle of the stream. 
1562   # this causes mencoder to not process the entire VOB, and exit without any errors.
1563   # detect this by seeing how much smaller the dst vob is from the src vob.
1564   MAX_FILESIZE_DELTA_PERCENT=70
1565   SRC_VOB_FILESIZE=$(stat -c%s "$tmpdir/$dvdname.VOB")
1566   DST_VOB_FILESIZE=$(stat -c%s "$vobfile")
1567   FILESIZE_DELTA=`echo "scale=2; $DST_VOB_FILESIZE / $SRC_VOB_FILESIZE * 100" | bc | awk -F '.' '{ print $1 }'`
1568   if [ $FILESIZE_DELTA -lt $MAX_FILESIZE_DELTA_PERCENT ]; then
1569     # Try one other way to get the VOB using mplayer directly to rip the feature titleset.
1570     echo "-> Detected bad VOB size copy protection after processing concatenated VOB file." | tee -a "$logfile"
1571     create_main_vob_with_mplayer "$isofile"
1572     [[ -e "$dumplog" ]] && rm -f $dumplog
1573     DST_VOB_FILESIZE=$(stat -c%s "$vobfile")
1574     FILESIZE_DELTA=`echo "scale=2; $DST_VOB_FILESIZE / $SRC_VOB_FILESIZE * 100" | bc | awk -F '.' '{ print $1 }'`
1575     if [ $FILESIZE_DELTA -lt $MAX_FILESIZE_DELTA_PERCENT ]; then
1576       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'"
1577     fi
1578   fi
1579 }
1580
1581 function check_vob_for_too_many_video_packets {
1582   # If our earlier algorithm to work around this failed, throw an error.
1583   # check to see if this DVD has a protection scheme we don't know how to work around
1584   # when I tried to burn the CARS DVD for example, you can't play the resulting VOB file.
1585   # for some reason, the video is black, while the audio rolls, then the video finally comes
1586   # in, but it is WAY off the audio. This appears to be due to some bad frames at the beginning of 
1587   # the 1st VOB. Until I figure out how to work around this, detect it, and error out.
1588   # instead of pulling the image from the disk again, you can pull it directly from the iso: -dvd-device $iso_path
1589   grep -q "Too many video packets in the buffer:" "$logfile"
1590   if [ $? == 0 ]; then
1591     # Try one other way to get the VOB using mplayer directly to rip the feature titleset.
1592     echo "-> Detected corrupt audio stream copy protection after processing concatenated VOB file." | tee -a "$logfile"
1593     create_main_vob_with_mplayer "$isofile"
1594     grep -q "Too many video packets in the buffer:" $dumplog
1595     if [ $? == 0 ]; then
1596       [[ -e "$dumplog" ]] && rm -f $dumplog
1597       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'"
1598     fi
1599     [[ -e "$dumplog" ]] && rm -f $dumplog
1600   fi
1601 }
1602
1603 function check_vob_for_a52_crc_errors {
1604   # Let's see if we can playback our newly created VOB file without any errors.
1605   # if there are issues, let's detect them now, and try to recreate the VOB
1606   # there are some forms of copy protection that have missed above, that evidence
1607   # themselves when we try to playback the VOB file. This was added to deal with
1608   # the "a52: CRC check failed" copy protection scheme.
1609   MAX_ERRORS=10
1610   ENDPOS=120
1611   echo "-> Checking for a52 audio stream CRC errors" | tee -a "$logfile"
1612   mplayer -endpos $ENDPOS -ao null -vo null "$vobfile" > $dumplog 2>&1
1613   cat $dumplog | grep -v "^A:" >> "$logfile"
1614   errors=`grep "a52: CRC check failed" $dumplog | wc | awk '{ print $1 }'`
1615   if [ $errors -gt $MAX_ERRORS ]; then
1616     echo "-> Detected a52 audio stream CRC errors copy protection after processing concatenated VOB file." | tee -a "$logfile"
1617     create_main_vob_with_mplayer "$isofile"
1618     echo "-> Checking for a52 audio stream CRC errors" | tee -a "$logfile"
1619     mplayer -endpos $ENDPOS -ao null -vo null "$vobfile" > $dumplog 2>&1
1620     if [ $? != 0 ]; then
1621       cat $dumplog | grep -v "^A:" >> "$logfile"
1622       fatal_and_exit "-E- Mplayer Failed"
1623     fi
1624     cat $dumplog | grep -v "^A:" >> "$logfile"
1625     errors=`grep "a52: CRC check failed" $dumplog | wc | awk '{ print $1 }'`
1626     if [ $errors -gt $MAX_ERRORS ]; then
1627       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'"
1628     fi
1629   fi
1630   [[ -e "$dumplog" ]] && rm -f $dumplog
1631 }
1632
1633 function calculate_bitrate_from_target_size {
1634   # determine what our bitrate needs to be if a target size was specified instead
1635   if [ $target_size -ne 0 ] && [ $custom_video_bitrate -eq 0 ]; then
1636     vob_length=`mplayer -identify -v "$vobfile" -endpos 0 2>&1 | grep ID_LENGTH | awk -F '=' '{ print $2 }' | awk -F '.' '{ print $1 }'`
1637     ((min_length = minimum_feature_title_length * 60))
1638     if [[ $vob_length -gt $min_length ]]; then 
1639       ((target_video_bitrate = (target_size * 1024 * 8) / vob_length ))
1640       custom_video_bitrate=1
1641       echo "   With a given target size of $target_size MB, the estimated bit rate will need to be $target_video_bitrate kbits/sec" | tee -a "$logfile"
1642     else
1643       echo "-W- Unable to determine the real length of this DVD feature title." | tee -a "$logfile"
1644       echo "    A target bitrate from the target_size requested will not be set." | tee -a "$logfile"
1645       echo "    If using handbrake, only the target_size will be passed to the encoder." | tee -a "$logfile" 
1646       echo "    If using mencoder, the target_size will be entirely disregarded." | tee -a "$logfile"
1647       echo "    You may need to rerun with the -b option with a target bitrate to get the desired size." | tee -a "$logfile"
1648       if [[ $encoder -ne "handbrake" ]] || [[ "$profile" =~ "xvid" ]]; then
1649         fatal_and_exit "-E- You'll need rip this DVD with the handbrake encoder and an MP4 type profile to get a good rip."
1650       fi
1651     fi
1652   fi
1653 }
1654
1655 function create_dvdauthor_dvd_xml_file {
1656   # make a dvdauthor xml menu file to create a valid DVD video from 
1657   # this script does a good job, but we'll still need to clean it up a bit after it runs
1658   echo "-> Creating dvdauthor XML menu file" | tee -a "$logfile"
1659   makexml -overwrite -dvd *.VOB -out dvd >> "$logfile" 2>&1
1660   if [ $? != 0 ]; then
1661     fatal_and_exit '-E- makexml -dvd *.VOB -out dvd failed'
1662   fi
1663
1664   # replace the first line of the xml file to remove the bad dest path
1665   awk -v line=1 -v new_content="<dvdauthor>" '{
1666     if (NR == line) {
1667       print new_content;
1668     } else {
1669       print $0;
1670     }
1671   }' dvd.xml > dvd.xml.new
1672   mv -f dvd.xml.new dvd.xml
1673   if [ $? != 0 ]; then
1674     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1675   fi
1676
1677   # remove the "<video " property line from the xml file
1678   cat dvd.xml | grep -v "<video" > dvd.xml.new
1679   mv -f dvd.xml.new dvd.xml
1680   if [ $? != 0 ]; then
1681     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1682   fi
1683   
1684   # remove the extra <pgc>..</pgc> pairs
1685   cat dvd.xml | awk 'BEGIN {x=1}
1686   {
1687     if ($0~"</pgc>") {x=0}
1688     if (x==1) {print $0}
1689     if ($0~"<pgc>") {x=1}
1690   }' > dvd.xml.new
1691   echo -e "</pgc>\n</titles>\n</titleset>\n</dvdauthor>" >> dvd.xml.new
1692   mv -f dvd.xml.new dvd.xml
1693   if [ $? != 0 ]; then
1694     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1695   fi
1696
1697   # remove the VTS_*_0.VOB file as this is just the main menu video clip
1698   cat dvd.xml | grep -v "VTS_.*_0.VOB" > dvd.xml.new
1699   mv -f dvd.xml.new dvd.xml
1700   if [ $? != 0 ]; then
1701     fatal_and_exit '-E- mv dvd.xml.new dvd.xml failed'
1702   fi
1703 }
1704
1705 function check_for_mplayer_dumpstream_incompatibility {
1706
1707   echo "-> Checking for mplayer dumpstream incompatibilities" | tee -a "$logfile"
1708
1709   # Check to see if the DVD had any lsdvd incompatibilities
1710   if [ $lsdvd_incompatibility -eq 1 ]; then
1711     invalid_feature_title=1
1712     echo "-E- Unable to determine the feature title due to an lsdvd inability to DeCSS" | tee -a "$logfile"
1713     echo "    You will need to determine this yourself and rerun the script with the -t option" | tee -a "$logfile"
1714     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"    
1715     return
1716   fi
1717
1718   if [ ! -e "$vobfile" ]; then
1719     # mplayer dumpstream does not work on DVDs that obscure the feature title.
1720     # A DVD that has 99 titles, where the longest title isn't the main feature
1721     # breaks mplayer dumpstream. We have to fallback to using dvdbackup to figure
1722     # out what the feature title is. This script will run through that flow if we
1723     # set use_mplayer_dumpstream to 0. Check for this here.
1724     if [ $ripdvd -eq 1 ]; then
1725       alarm $lsdvd_timeout lsdvd $dev | grep -q "Title: 99"
1726     else
1727       alarm $lsdvd_timeout lsdvd "$isofile" | grep -q "Title: 99"
1728     fi
1729     # If we have 99 titles and a feature title wasn't given on the command line, switch modes.
1730     if [ $? == 0 ] && [ $feature_title_override -eq 0 ]; then
1731       if [ $trust_feature_title_autodetect_when_uncertain -eq 0 ]; then
1732         echo "-E- Unable to determine the feature title due to the 99 title copy protection scheme" | tee -a "$logfile"
1733         echo "    You will need to determine this yourself and rerun the script with the -t option" | tee -a "$logfile"
1734         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"
1735         invalid_feature_title=1
1736       else 
1737         echo "    Falling back to non mplayer dumpstream methods to copy the DVD" | tee -a "$logfile"
1738         echo "-W- We still may not be able to autodetect the right feature title" | tee -a "$logfile"
1739         echo "    You may need to determine this yourself and rerun the script with the -t option" | tee -a "$logfile"
1740         use_mplayer_dumpstream=0
1741         invalid_feature_title=1
1742       fi
1743       return
1744     fi
1745   fi
1746
1747   # There is another form of protection that causes the mplayer dumpstream to fail. 
1748   # This can be detected by telling mplayer to parse the VOB file by copying its audio
1749   # video streams to a dummy output file (/dev/null). Do that here to check for that 
1750   # problem before continuing.
1751   if [ -e "$vobfile" ]; then
1752     mplayer_opts="-quiet -ofps 30000/1001 -ffourcc DIVX -oac copy -ovc copy"
1753     mencoder $mplayer_opts "$vobfile" -o "/dev/null" > $dumplog 2>&1
1754     grep -q "Too many audio packets in the buffer" $dumplog
1755     if [ $? == 0 ]; then
1756       echo "-> The VOB dumped by mplayer is invalid. Falling back to non mplayer dumpstream to copy the DVD" | tee -a "$logfile"
1757       use_mplayer_dumpstream=0
1758       mplayer_dumpstream_incompatibility=1
1759     fi
1760     [[ -e "$dumplog" ]] && rm -f $dumplog
1761   fi
1762
1763   # There is another form of protection that causes the mplayer dumpstream to fail.
1764   # The resulting VOB file looks complete, but has something in it that causes mplayer/mencoder 
1765   # to be unable to encode it since it thinks the entire VOB is only a few minutes long in length.
1766   # Using HandBrake with an MP4 type profile can work around this, but mencoder or Handbrake with XVID profile won't.
1767   if [ -e "$vobfile" ]; then
1768     vob_length=`mplayer -identify -v "$vobfile" -endpos 0 2>&1 | grep ID_LENGTH | awk -F '=' '{ print $2 }' | awk -F '.' '{ print $1 }'`
1769     ((min_length = minimum_feature_title_length * 60))
1770     if [[ $vob_length -lt $min_length ]]; then 
1771       if [[ $encoder -ne "handbrake" ]] || [[ "$profile" =~ "xvid" ]]; then
1772         echo "-E- The main feature title that was ripped from the DVD has an invalid movie length." | tee -a "$logfile"
1773         echo "    You'll need rip this DVD with the handbrake encoder and an MP4 or MKV type profile instead." | tee -a "$logfile"
1774         mplayer_dumpstream_incompatibility=1
1775         fatal_and_exit "-E- Aborting encoding step due to invalid movie length."
1776       fi
1777     fi
1778   fi
1779 }
1780
1781 function fill_mythvideo_metadata {
1782
1783   # This function must be passed the filename as an argument
1784   # The filename must be a full path to the file
1785   filename="$1"
1786
1787   # Make sure the fill mythvideo metadata option has been set to 1
1788   if [ $fill_mythvideo_metadata -eq 0 ]; then
1789     echo "-> fill_mythvideo_metadata=0 therefore not updating mythvideo metadata for this rip" | tee -a "$logfile"
1790     return 0
1791   fi
1792
1793   # If the fill mythvideo metadata script is present, run it
1794   # fill_mythvideo_metadata.plThis will download the metadata for the DVD we ripped.
1795   if [[ -x `which fill_mythvideo_metadata.pl` ]]; then
1796     echo "-> Running fill_mythvideo_metadata.pl to lookup/add/update the metadata for this DVD: $filename" | tee -a "$logfile"
1797     fill_mythvideo_metadata.pl -N 0 -F "$filename" >> "$logfile" 2>&1
1798   else
1799     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"
1800     echo "    Set the fill_mythvideo_metadata variable to 0 in the script to avoid running this step." | tee -a "$logfile"
1801   fi
1802 }
1803
1804 # remove the intermediate VOB file
1805 function remove_intermediate_vob_file {
1806   if [ $keep_intermediate_files -eq 0 ]; then
1807     [[ -e "$tmpdir/$dvdname.VOB" ]] && rm -f "$tmpdir/$dvdname.VOB"
1808   else
1809     echo "-> Keeping intermediate concatenated VOB file: $tmpdir/$dvdname.VOB" | tee -a "$logfile"
1810   fi
1811 }
1812
1813 # remove the original DVD image 
1814 function remove_intermediate_iso_file {
1815   [[ $keep_isofile -eq 1 ]] && return 1
1816   if [ $keep_intermediate_files -eq 0 ]; then
1817     [[ -e "$isofile" ]] && rm "$isofile"
1818   else
1819     echo "-> Keeping ddrescue intermediate iso file: $isofile" | tee -a "$logfile"
1820   fi
1821 }
1822
1823 # remove the intermediate dvdbackup folder
1824 function remove_intermediate_dvdbackup_folder {
1825   if [ $keep_intermediate_files -eq 0 ]; then
1826     [[ -d "$tmpdir/$dvdname" ]] && rm -rf "$tmpdir/$dvdname"
1827   else
1828     echo "-> Keeping intermediate dvdbackup folder: $tmpdir/$dvdname" | tee -a "$logfile"
1829   fi
1830 }
1831
1832 ##############################################################################################
1833 # MAIN
1834 ##############################################################################################
1835
1836 # Make a note of when this DVD rip started
1837 date=`date`
1838 echo -e "\n$date DVD rip started" >> "$logfile"
1839 echo "$cmd" >> "$logfile"
1840
1841 # Rip the DVD - Mirror Mode
1842 if [ $mirror_mode -eq 1 ]; then
1843   echo "-> Ripping DVD $dvdname to $dest"
1844
1845   if [[ "$ripper" == "makemkv" ]]; then
1846       # use makemkv to make an MKV file of the disk
1847       make_dvd_mkv_image "$tmpdir/$dvdname.mkv" "disc" "$makemkv_disc_id"
1848       # move the ripped movies into place
1849       typeset -i num=0 
1850       for i in `/bin/ls -1 "$tmpdir/$dvdname"*.mkv`; do
1851         if [[ "$i" =~ .[[:digit:]].mkv ]]; then
1852           finaldest="$dest/$dvdname.$num.mkv"
1853         else
1854           finaldest="$dest/$dvdname.mkv"
1855         fi
1856         while [[ -e "$finaldest" ]]; do
1857           ((num = num + 1 ))
1858           finaldest="$dest/$dvdname.$num.mkv"
1859         done
1860         echo "   Moving $i -> $finaldest"
1861         mv "$i" "$finaldest"
1862       done
1863       # add this video data to the mythtv DB
1864       fill_mythvideo_metadata "$dest_filename"
1865   else       
1866       # use ddrescue to make an ISO image of the disk
1867       make_dvd_iso_image "$tmpdir/$dvdname.iso"
1868       echo "   Moving $tmpdir/$dvdname.iso -> $dest/$dvdname.iso"
1869       mv "$tmpdir/$dvdname.iso" "$dest/$dvdname.iso"
1870       # add this video data to the mythtv DB
1871       fill_mythvideo_metadata "$dest_filename"
1872   fi
1873
1874   # eject the disk upon completion
1875   if [ $eject_disk -ne 0 ]; then
1876     eject $eject_opts $dev
1877   fi
1878
1879   date=`date`
1880   echo "$date DVD rip completed" | tee -a "$logfile"
1881
1882   if [[ -n "$mailto" ]]; then
1883     cat "$logfile" | mailx -s "dvd rip of $dvdname DONE" "$mailto"
1884   fi
1885
1886 fi
1887
1888 # Rip the DVD - Main Title Feature Only
1889 if [ $mirror_mode -eq 0 ]; then
1890
1891   # Rip image from DVD
1892   if [ $ripdvd -eq 1 ]; then
1893     echo "-> Ripping DVD $dvdname to $dest" | tee -a "$logfile"
1894     if [[ "$ripper" == "makemkv" ]]; then
1895         # use makemkv to make an MKV file of the disk
1896         make_dvd_mkv_image "$tmpdir/$dvdname.mkv" "disc" "$makemkv_disc_id"
1897         vobfile="$tmpdir/$dvdname.mkv"
1898     else 
1899         # use ddrescue to make an ISO image of the disk
1900         make_dvd_iso_image "$tmpdir/$dvdname.iso"
1901         isofile="$tmpdir/$dvdname.iso"
1902     fi
1903   fi
1904
1905   # Rip image from DVD path
1906   if [ -n "$dvdpath" ]; then
1907     echo "-> Ripping DVD $dvdpath to $dest" | tee -a "$logfile"
1908     make_dvd_iso_image_from_folder "$dvdpath" "$tmpdir/$dvdname.iso" 1   
1909     isofile="$tmpdir/$dvdname.iso"
1910   fi
1911  
1912   if [ $make_final_dest_vob -eq 1 ] || [ $make_final_dest_comp -eq 1 ]; then
1913
1914     # Create our "vobfile" using makemkv if told to do so
1915     if [[ "$isofile" =~ "iso" ]] && [[ "$ripper" == "makemkv" ]]; then
1916         echo "-> Creating VOB/MKV file from $isofile"
1917         vobfile="$tmpdir/$dvdname.mkv"
1918         make_dvd_mkv_image "$vobfile" "iso" "$isofile"
1919     fi
1920
1921     # get the feature title from the ISO
1922     if [[ "$isofile" =~ "iso" ]]; then
1923         get_feature_title "$isofile"
1924     fi
1925
1926     # Create our "vobfile" using mplayer if needed
1927     if [[ ! -e "$vobfile" ]] && [[ "$isofile" =~ "iso" ]]; then
1928       echo "-> Creating DVD video $vobfile from $isofile" | tee -a "$logfile"
1929        
1930       # get the crop value from the ISO
1931       get_crop_from_iso
1932
1933       # check for mplayer dumpstream incompatibilities
1934       # if they exist, this method will set this mode to 0.
1935       check_for_mplayer_dumpstream_incompatibility
1936
1937       if [ $use_mplayer_dumpstream -eq 1 ]; then 
1938
1939         # get our audio id from the ISO file
1940         get_audio_id_from_iso "$isofile"
1941
1942         # create our main VOB file from the ISO
1943         create_main_vob_with_mplayer "$isofile"
1944      
1945         # remove the intermediate VOB file
1946         remove_intermediate_vob_file
1947
1948         # it's possible that our VOB is still corrupted in some manner
1949         # check to make sure it is still a good VOB before continuing.
1950         check_for_mplayer_dumpstream_incompatibility
1951
1952       fi
1953  
1954       if [ $use_mplayer_dumpstream -eq 0 ]; then 
1955
1956         # use dvdbackup to make a DVD folder of the feature title
1957         make_dvdbackup_folder_image
1958   
1959         # create our main VOB file
1960         create_main_vob_with_cat
1961
1962         # get our audio id from the VOB file
1963         get_audio_id_from_vob "$tmpdir/$dvdname.VOB"
1964   
1965         # check for corrupted VOB start
1966         check_vob_for_corrupted_start
1967  
1968         # check to make sure our VOB is complete
1969         check_vob_for_completeness
1970
1971         # check to make sure our VOB doesn't have too many video packets
1972         check_vob_for_too_many_video_packets
1973
1974         # check to make sure our VOB doesn't have a52 crc errors
1975         check_vob_for_a52_crc_errors
1976
1977         # remove the intermediate VOB file
1978         remove_intermediate_vob_file
1979
1980       fi
1981
1982       # remove the intermediate ISO file
1983       remove_intermediate_iso_file
1984
1985     else
1986       if [[ -e "$vobfile" ]] && [[ "$encoder" != "handbrake" ]]; then 
1987         echo "-> Skipping VOB creation. VOB DVD video already exists: $vobfile" | tee -a "$logfile"
1988         # get our audio id from the VOB file
1989         get_audio_id_from_vob "$vobfile"
1990         # get the crop value from the VOB
1991         get_crop_from_vob
1992       fi
1993     fi
1994
1995     # eject the DVD disk since we are finished with it
1996     [ $eject_disk -eq 2 ] && eject $eject_opts $dev
1997
1998     # encode the VOB file to a compressed file format
1999     if [ $make_final_dest_comp -eq 1 ]; then
2000       echo "-> Encoding the DVD video to a compressed file using $encoder" | tee -a "$logfile"
2001
2002       # determine what our bitrate needs to be if a target size was specified instead
2003       calculate_bitrate_from_target_size        
2004      
2005       # encode the vob file into a compressed file format
2006       if [[ "$encoder" == "mencoder" ]]; then 
2007         encode_vob_file_mencoder
2008       fi
2009       if [[ "$encoder" == "handbrake" ]]; then
2010         encode_vob_file_handbrake
2011       fi
2012
2013       if [ $keep_intermediate_files -eq 0 ] && [ $make_final_dest_vob -eq 0 ]; then
2014         [[ -e "$vobfile" ]] && [[ $keep_vobfile -eq 0 ]] && rm -f "$vobfile";
2015         [[ -e "$passlogfile" ]] && rm -f "$passlogfile";
2016       else
2017         echo "-> Keeping VOB file: $vobfile" | tee -a "$logfile"
2018         echo "-> Keeping mencoder 2pass logfile: $passlogfile"
2019       fi
2020     fi
2021
2022   # add this video data to the mythtv DB
2023   [ $make_final_dest_comp -eq 1 ] && fill_mythvideo_metadata "$final_output_file" 
2024   [ $make_final_dest_vob -eq 1 ] && fill_mythvideo_metadata "$vobfile" 
2025     
2026   else
2027
2028   # use dvdbackup to make a DVD folder of the feature title
2029   make_dvdbackup_folder_image
2030
2031   # cd to the feature title DVD folder
2032   pushd "$tmpdir/$dvdname/VIDEO_TS" > /dev/null 2>&1
2033   if [ $? != 0 ]; then
2034     fatal_and_exit "-E- Unable to cd to $tmpdir/$dvdname/VIDEO_TS"
2035   fi
2036   
2037   # create the dvd.xml file for dvdauthor
2038   create_dvdauthor_dvd_xml_file  
2039
2040   # make the final DVD folder image
2041   make_dvdauthor_folder_image
2042
2043   # add this video data to the mythtv DB
2044   fill_mythvideo_metadata "$dest/$dvdname/VIDEO_TS" 
2045  
2046   # cd back to the dir we started from
2047   popd > /dev/null 2>&1
2048
2049   if [ $make_final_dest_iso -eq 1 ]; then
2050
2051     # make an iso image out of our directory
2052     make_dvd_iso_image_from_folder "$dest/$dvdname" "$dest/$dvdname.iso" 0
2053    
2054     # If the mkisofs was unable to make a .iso file for us, don't remove the DVD directory 
2055     if [ -s "$dest/$dvdname.iso" ]; then
2056       if [ $make_final_dest_folder -eq 0 ]; then
2057         echo "-> Removing DVD folder since ISO was created: $dest/$dvdname" | tee -a "$logfile"
2058         # remove the folder of the DVD image now that we have a .iso version of it
2059         [[ -d "$dest/$dvdname" ]] && rm -rf "$dest/$dvdname"
2060       fi
2061     else
2062       # we created an empty iso file, remove it
2063       echo "-> Removing empty ISO image: $dest/$dvdname.iso" | tee -a "$logfile"
2064       echo "-> Keeping the DVD folder since the ISO image couldn't be created properly: $dest/$dvdname"
2065       [[ -e "$dest/$dvdname.iso" ]] && rm "$dest/$dvdname.iso"
2066     fi
2067  
2068     # add this video data to the mythtv DB
2069     fill_mythvideo_metadata "$dest/$dvdname.iso" 
2070
2071   fi
2072
2073   fi
2074
2075   # remove the ddrescue DVD ISO image
2076   remove_intermediate_iso_file
2077
2078   # remove the tmp dvdbackup folder of the DVD image
2079   remove_intermediate_dvdbackup_folder
2080
2081   # eject the DVD disk upon completion
2082   [ $eject_disk -eq 1 ] && eject $eject_opts $dev
2083
2084   date=`date`
2085   echo "$date DVD rip completed" | tee -a "$logfile"
2086
2087   if [[ -n "$mailto" ]]; then
2088     cat "$logfile" | mailx -s "dvd rip of $dvdname DONE" "$mailto"
2089   fi
2090
2091 fi
2092
2093 ##############################################################################################