-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathzoom-recording-downloader.conf.template
More file actions
32 lines (32 loc) · 1.04 KB
/
zoom-recording-downloader.conf.template
File metadata and controls
32 lines (32 loc) · 1.04 KB
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
{
"OAuth": {
"account_id": "<ACCOUNT_ID>",
"client_id": "<CLIENT_ID>",
"client_secret": "<CLIENT_SECRET>"
},
"_comment": "everything after this is optional",
"Storage": {
"completed_log": "completed-downloads.log",
"download_dir": "downloads"
},
"GoogleDrive": {
"_comment": "Optional: Only needed if using Google Drive upload feature",
"client_secrets_file": "client_secrets.json",
"token_file": "token.json",
"root_folder_name": "zoom-recording-downloader",
"retry_delay": 5,
"max_retries": 3,
"failed_log": "failed-uploads.log"
},
"Recordings": {
"start_year": "2024",
"start_month": "1",
"start_day": "1",
"start_date": "2024-01-01",
"end_date": "2024-12-31",
"timezone": "America/New_York",
"strftime": "%Y.%m.%d-%H.%M%z",
"filename": "{meeting_time}-{topic}-{rec_type}-{recording_id}.{file_extension}",
"folder": "{year}/{month}/{meeting_time}-{topic}"
}
}