-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecordconfig.json
More file actions
35 lines (31 loc) · 974 Bytes
/
Copy pathrecordconfig.json
File metadata and controls
35 lines (31 loc) · 974 Bytes
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
{
"default":{
"record_dir": "./videos/",
"replace_file": false,
"ffmpeg": {
"args": ["-c", "copy", "-map", "0", "-b:v", "32768k", "-b:a", "192k", "-max_muxing_queue_size", "262144k", "-r", "60", "-hide_banner", "-loglevel", "\"repeat+info\"", "-err_detect", "ignore_err"],
"path": "ffmpeg"
}
},
"programs":[
{
"filename": "%title% - ep%episode% s%season% - %subtitle%.%ext%",
"record_dir": "%default%/doctorwho/s%season%",
"conditions":{
"or":{
"title": {"match": "partial", "value":["Doctor Who","DoctorWho"]},
"subtitle": {"match": "partial", "value":["Doctor Who","DoctorWho"]}
}
}
},
{
"filename": "%title% - ep%episode% s%season% - %subtitle%.%ext%",
"record_dir": "%default%/ninjago/s%season%",
"conditions":{
"or":{
"title": {"match": "partial", "value":"Ninjago"}
}
}
}
]
}