-
Notifications
You must be signed in to change notification settings - Fork 10
/
conf.json
70 lines (70 loc) · 1.99 KB
/
conf.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"api": {
"enabled": true,
"host": "localhost",
"port": 8091,
"mode": "release",
"verbose": "v"
},
"video": {
"host": "localhost",
"port": 8090,
"mode": "release",
"verbose": "v"
},
"hls": {
"ms_per_segment": 10000,
"directory": "./hls",
"window_size": 5,
"window_capacity" : 10
},
"archive": {
"enabled": true,
"directory": "./mp4",
"ms_per_file": 30000,
"minio_settings": {
"host": "localhost",
"port": 29199,
"user": "minio_secret_login",
"password": "minio_secret_password",
"default_bucket": "archive-bucket",
"default_path": "/var/archive_data"
}
},
"cors": {
"enabled": true,
"allow_origins": ["*"],
"allow_methods": ["GET", "PUT", "POST", "DELETE"],
"allow_headers": ["Origin", "Authorization", "Content-Type", "Content-Length", "Accept", "Accept-Encoding", "X-HttpRequest"],
"expose_headers": ["Content-Length"]
},
"rtsp_streams": [
{
"guid": "0742091c-19cd-4658-9b4f-5320da160f45",
"type": "rtsp",
"url": "rtsp://localhost:45666/live",
"output_types": ["mse"],
"verbose": "v",
"archive": {
"enabled": true,
"ms_per_file": 10000,
"type": "filesystem",
"directory": "custom_folder"
}
},
{
"guid": "566bfe72-1f85-4e7d-9c0a-424e6c3b29f3",
"type": "rtsp",
"url": "rtsp://localhost:45664/live",
"output_types": ["mse"],
"verbose": "v",
"archive": {
"enabled": true,
"ms_per_file": 15000,
"type": "minio",
"minio_bucket": "vod-bucket",
"minio_path": "/var/archive_data_custom"
}
}
]
}