-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig-example.json
28 lines (27 loc) · 1.2 KB
/
config-example.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
{
"zoom-token": "",
"vimeo-token": "",
"vimeo-user-id": "",
"vimeo-preset-id": "",
"vimeo-password": {
"active": true / false, //True if you want to set password view in vimeo
"password": "your_password"
},
"s3-integrate": {
"active": true / false,
"AccessKeyID": "your_aws_AccessKeyID", //Generate your access key under IAM console at https://console.aws.amazon.com/iam
//Access key contains AccessKeyID and SecretAccessKey
//Make sure your access key has full access to S3
"SecretAccessKey": "your_aws_SecretAccessKey",
"bucket": "your_bucket_name"
},
"min-duration": 2, //minimum duration of the zoom cloud recordings to be uploaded.
//(set this to 0 if you want all the recordings)
"zoom-recordings-delete": true / false, //True if you want to move succesfully uploaded files to Trash
"report-mailer": {
"active": true / false, //True if you want the outputfile.csv to be mailed
"mail-to": "[email protected]" / ["[email protected]", "[email protected]"], //for multiple recievers only use list []
"mail-id": "[email protected]",
"mail-password": "sender-mail-id-pass"
}
}