Major release to support HandBrake video encoder.
[rip_dvd/.git] / rip_dvd.conf.dist
1 ###########################################################################################
2 # configuration file for the rip_dvd script:
3 # - rip_dvd.conf.dist = contains default values (tracked by GIT)
4 # - rip_dvd.conf = contains localized overrides to the default values (not tracked by GIT)
5 #                  should initially be created by copying the rip_dvd.conf.dist
6 # NOTE: You can override ANY of the global variables listed in the top of rip_dvd here
7 ###########################################################################################
8
9 # specify the path to the rip_dvd script
10 ripcmd="/myth/video/bin/rip_dvd"
11
12 # Specify the device path to the DVD drive
13 dev=/dev/dvd
14
15 # Specify the path to the log directory 
16 logdir=/var/log/ripdvd
17
18 # Specify the path to the tmp rip directory
19 tmpdir=/myth/video/DVDs/.ripdvd
20
21 # Specify the email address to send job notifications to
22 mailto=root
23
24 # Setup the path to the tools needed by this ripper
25 PATH=/etc/mythtv/bin:/usr/local/bin:/usr/sbin:/sbin:/usr/bin:/usr/share/tovid:.:$PATH
26
27 # Use mplayer dumpstream to create the main VOB file
28 # If set to 0, cat and other utils will be used to make it instead.
29 # Using mplayer dumpstream is by far the best way to create the main VOB file
30 # The only thing this doesn't work for are DVDs with the 99 title copy protection.
31 # The script will autodetect these types of disks, and change this to 0 if necessary.
32 # If this is set to 0, other methods will be employed to get the DVD VOB dump.
33 use_mplayer_dumpstream=1
34
35 # 2-channel AVI encoding audio bit rate
36 audio_bitrate=224
37
38 # If set to 1, this script will call another script to fill in the mythvideo metadata
39 # If you don't use mythtv, set this option to 0. If you use mythtv, and have downloaded
40 # the fill_mythvideo_metadata.pl script shown above, you can leave this option set to 1.
41 fill_mythvideo_metadata=0
42
43 # If the 99 titleset copy protection scheme is detected, trust the autodetection or abort.
44 # The autodetection may work, but it probably won't in this case. Set to 0 by default. 
45 # Override to 1 if you want the script to wing it, and hope it picks the right feature title.
46 # Otherwise, you will need to rerun the script providing the feature title with the -t option.
47 trust_feature_title_autodetect_when_uncertain=0
48
49 # specify the number of threads that mencoder should use when encoding the video (AVI mode)
50 # an optimal setting for this should be the number of cores you have times 2
51 # note: you have to have an mplayer version that has been compiled with multi thread support.
52 # if you don't, this will have no effect, but won't hurt anything to have it set otherwise.
53 # note: the xvid codec seems to be fastest with threads set to 2.
54 mencoder_threads=2
55
56 # handbrake parameters
57 # handbrake version 0.9.3 was the last one to support xvid encoding
58 # handbrake version 0.9.4 is all about mp4 encoding
59 handbrake_xvid="HandBrakeCLI-0.9.3"
60 handbrake_mp4="HandBrakeCLI-0.9.4"
61
62 ###########################################################################################