-
Notifications
You must be signed in to change notification settings - Fork 60
/
settings.example.cfg
143 lines (105 loc) · 3.54 KB
/
settings.example.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
makemkv:
# Path to makemkvcon (with trailing slash) in case it is unavailable in your $PATH
makemkvconPath: ""
# This is where the ripped movies go
savePath: /tmp/
# Minimum length of the main title (Mostly just a precaution)
minLength: 4000
# Maximum length of the title (For TV Series)
maxLength: 7200
# MakeMKV Cache size in MB, default 1GB is fine for most circumstances
cache: 1024
# Eject the disk
eject: True
# Ignore region warnings
ignore_region: True
compress:
# Path to compression app (with trailing slash) in case it is unavailable in your $PATH
compressionPath: ""
# File format of compressed video (mkv, mp4, avi)
format: "mkv"
# The compression application to use.
# handbrake: Compress the video using Handbrake
# ffmpeg: Compress the video using FFmpeg
type: handbrake
# The scheduling priority of the HandBrake program
# -20 is the highest (The task gets top priority)
# 19 is the lowest (The task get no priority and runs on spare CPU cycles)
nice: 15
# The HandBrake command line options and arguments
# Configure this to change output quality
# each line should start with -
com:
- --x264-preset="medium"
- --two-pass
- --turbo
- -q 20
- --markers
- --x264-tune="film"
- --encoder="x264"
- -s 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
# Example FFmpeg command line
#com:
# - -map 0
# - -c copy
# - -c:v libx264
# - -crf 20
# - -preset medium
filebot:
# Enable filebot renaming
enable: True
# Download Subtitles?
subtitles: True
# Language of subtitles if enabled
language: en
# Move to folder after renaming
move: False
# Movie Folder
moviePath: /tmp/movies
# TV Folder
tvPath: /tmp/tvshows
analytics:
enable: True
commands:
# A list of commands to run after filebot completes
# each line should start with -
# eg:
# - mythutil --scanvideos
notification:
# Enable
enable: True
# Notify on these events
notify_on_state: rip, compress, extra
methods:
smtp:
# Enable email notification
enable: False
# Outgoing Mail Server (smtp.live.com, smtp.mail.yahoo.com)
smtp_server: smtp.gmail.com
# Outgoing Mail Port (Hotmail 587, Yahoo 995)
smtp_port: 587
# Email Username
smtp_username: [email protected]
# Email Username's Password
smtp_password: my_password
# Source email, usually smtp_username
source_email: [email protected]
# Destination Email
destination_email: [email protected]
pushover:
# https://pushover.net/
# Enable pushover notifications
enable: False
user_key:
app_key:
ForcedSubs:
# Enable foreign subtitle detection and flagging
enable: True
# Path to mediainfo in case it is not in $PATH
mediainfoPath: ""
# Path to mkvpropedit in case it is not in $PATH
mkvpropeditPath: ""
# Langauge of main subtitle
language: en
# Ratio of secondary subtitle file size to main subtitle size. ie, says will look for subtitle tracks <= 10% of main track.
ratio: .1