Adjusted ipod/iphone MP4 encoding settings
[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 ###########################################################################################
7
8 # specify the path to the rip_dvd script
9 ripcmd="/myth/video/bin/rip_dvd"
10
11 # Specify the device path to the DVD drive
12 dev=/dev/dvd2
13
14 # Specify the path to the log directory 
15 logdir=/var/log/ripdvd
16
17 # Specify the path to the tmp rip directory
18 tmpdir=/myth/video/DVDs/.ripdvd
19
20 # Specify the email address to send job notifications to
21 mailto=root
22
23 # Setup the path to the tools needed by this ripper
24 PATH=/etc/mythtv/bin:/usr/local/bin:/usr/sbin:/sbin:/usr/bin:.:$PATH
25
26 # Use mplayer dumpstream to create the main VOB file
27 # If set to 0, cat and other utils will be used to make it instead.
28 # Using mplayer dumpstream is by far the best way to create the main VOB file
29 # The only thing this doesn't work for are DVDs with the 99 title copy protection.
30 # The script will autodetect these types of disks, and change this to 0 if necessary.
31 # If this is set to 0, other methods will be employed to get the DVD VOB dump.
32 use_mplayer_dumpstream=1
33
34 # 2-channel AVI encoding audio bit rate
35 audio_bitrate=224
36
37 # If set to 1, this script will call another script to fill in the mythvideo metadata
38 # If you don't use mythtv, set this option to 0. If you use mythtv, and have downloaded
39 # the fill_mythvideo_metadata.pl script shown above, you can leave this option set to 1.
40 fill_mythvideo_metadata=0
41
42 # If the 99 titleset copy protection scheme is detected, trust the autodetection or abort.
43 # The autodetection may work, but it probably won't in this case. Set to 0 by default. 
44 # Override to 1 if you want the script to wing it, and hope it picks the right feature title.
45 # Otherwise, you will need to rerun the script providing the feature title with the -t option.
46 trust_feature_title_autodetect_when_uncertain=0
47
48 # specify the number of threads that mencoder should use when encoding the video (AVI mode)
49 # an optimal setting for this should be the number of cores you have times 2
50 # note: you have to have an mplayer version that has been compiled with multi thread support.
51 # if you don't, this will have no effect, but won't hurt anything to have it set otherwise.
52 mencoder_threads=4
53
54 ###########################################################################################