forked from aziascreations/Youtube-Auto-Archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
56 lines (56 loc) · 1.91 KB
/
config.json
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
{
"application": {
"root_output_dir": "./data",
"logging_level_main": 20,
"auto_shutdown_after_ms": -1,
"auto_shutdown_do_wait_for_workers": true,
"auto_shutdown_number_to_send": -1,
"signal_shutdown_do_wait_for_workers": false
},
"youtube": {
"output_subdir": "./youtube",
"delay_ms_metadata_download": 30000,
"logging_level_worker": 10,
"logging_level_thread": 10,
"channels": [
{
"internal_id": "rim",
"channel_id": "RogueInternetMan",
"name": "Rogue, Internet Man",
"output_subdir": "./rogue_internet_man",
"live_subdir": "./livestreams",
"upload_subdir": "./uploads",
"check_live": true,
"check_upload": false,
"interval_ms_live": 90000,
"interval_ms_upload": 3700000,
"quality_live": "best",
"quality_upload": "bestvideo[ext!=webm]??+bestaudio[ext!=webm]??/best[ext!=webm]",
"backlog_days_upload": 7,
"break_on_existing": false,
"break_on_reject": true,
"yt_dlp_extra_args": "--write-thumbnail --write-description --write-info-json --merge-output-format mp4 ",
"allow_upload_while_live": false
},
{
"internal_id": "ppk",
"channel_id": "propainkey",
"name": "propainkey",
"output_subdir": "./propainkey",
"live_subdir": "./livestreams",
"upload_subdir": "./uploads",
"check_live": false,
"check_upload": true,
"interval_ms_live": 120000,
"interval_ms_upload": 5100000,
"quality_live": "best",
"quality_upload": "bestvideo[ext!=webm]??+bestaudio[ext!=webm]??/best[ext!=webm]",
"backlog_days_upload": 3,
"break_on_existing": false,
"break_on_reject": true,
"yt_dlp_extra_args": "--write-thumbnail --write-description --write-info-json --merge-output-format mp4 ",
"allow_upload_while_live": false
}
]
}
}