Added new moviedir option and makemkv only copy largest mkv option.
[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 (no need to do this if rip_dvd is in
10 # the same directory as the rip_dvd.wrap script (which is likely).
11 # ripcmd="/myth/video/bin/rip_dvd"
12
13 # Specify the device path to the DVD drive
14 dev=/dev/dvd
15
16 # Specify the path to the log directory 
17 logdir=/var/log/ripdvd
18
19 # Specify the path to the tmp rip directory
20 tmpdir=/myth/video/DVDs/.ripdvd
21
22 # Specify the path to the base destination dir for ripped movies
23 moviedir=/myth/video/Movies
24
25 # Specify the email address to send job notifications to
26 mailto=root
27
28 # Setup the path to the tools needed by this ripper
29 PATH=/etc/mythtv/bin:/usr/local/bin:/usr/sbin:/sbin:/usr/bin:/usr/share/tovid:.:$PATH
30
31 # Use mplayer dumpstream to create the main VOB file
32 # If set to 0, cat and other utils will be used to make it instead.
33 # Using mplayer dumpstream is by far the best way to create the main VOB file
34 # The only thing this doesn't work for are DVDs with the 99 title copy protection.
35 # The script will autodetect these types of disks, and change this to 0 if necessary.
36 # If this is set to 0, other methods will be employed to get the DVD VOB dump.
37 use_mplayer_dumpstream=1
38
39 # If set to 1, this script will call another script to fill in the mythvideo metadata
40 # If you don't use mythtv, set this option to 0. If you use mythtv, and have downloaded
41 # the fill_mythvideo_metadata.pl script shown above, you can leave this option set to 1.
42 fill_mythvideo_metadata=0
43
44 # If the 99 titleset copy protection scheme is detected, trust the autodetection or abort.
45 # The autodetection may work, but it probably won't in this case. Set to 0 by default. 
46 # Override to 1 if you want the script to wing it, and hope it picks the right feature title.
47 # Otherwise, you will need to rerun the script providing the feature title with the -t option.
48 trust_feature_title_autodetect_when_uncertain=0
49
50 # Set what you expect to be the minimum feature title length. If the length of the DVD being
51 # ripped is detected to be less than this, throw out the calculated bitrate since it will be wrong.
52 # Some movies, like "The Saint", have VOBs created of the main feature whose length is incorrectly
53 # detected by mplayer. This makes the routine that converts target size into target bitrate get
54 # the wrong answer. In these cases, throw out the calculated bitrate, and rely on the bitrate
55 # provided on the command line. The units of this are in minutes.
56 minimum_feature_title_length=60
57
58 # specify the number of threads that mencoder should use when encoding the video (AVI mode)
59 # an optimal setting for this should be the number of cores you have times 2
60 # note: you have to have an mplayer version that has been compiled with multi thread support.
61 # if you don't, this will have no effect, but won't hurt anything to have it set otherwise.
62 # note: the xvid codec seems to be fastest with threads set to 2.
63 mencoder_threads=2
64
65 # HandBrakeCLI Executable Name:
66 # HandBrake version <=0.9.3 was the last one to support xvid encoding.
67 # HandBrake version >=0.9.4 is all about mp4 encoding.
68 # The HandBrakeCLI executable names below must be found in your PATH.
69 # Set the handbrake_* variables below to "" for any you don't want to use.
70 # The rip_dvd script will complain if they are not "" and it can't find them.
71 handbrake_xvid="HandBrakeCLI-0.9.3"
72 handbrake_mp4="HandBrakeCLI-0.9.4"
73 # apt-get install ogmtools
74 dvdxchap="dvdxchap"
75 # apt-get install gpac
76 mp4box="MP4Box"
77
78 # MakeMKV Executable Name:
79 # http://www.makemkv.com/download/
80 # Set the option below to "" if you don't have it/want to use it
81 # Set the disc_id option to be the ID of the DVD drive in your system
82 makemkv="makemkvcon"
83 makemkv_disc_id="0"
84 makemkv_copy_largest_title_only=1
85
86 # MKV Tools
87 # http://www.bunkus.org/videotools/mkvtoolnix/
88 mkvextract="mkvextract"
89 mkvpropedit="mkvpropedit"
90 mkvmerge="mkvmerge"
91
92 ###########################################################################################