-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
64 lines (64 loc) · 1.73 KB
/
config.json
File metadata and controls
64 lines (64 loc) · 1.73 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
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
{
"server": {
"port": 3000,
"httpsPort": 3443,
"host": "0.0.0.0"
},
"webrtc": {
"iceServers": []
},
"video": {
"defaultConstraints": {
"width": {
"ideal": 1920
},
"height": {
"ideal": 1080
},
"frameRate": {
"ideal": 60
},
"facingMode": "user"
},
"presets": {
"720p30": {
"width": 1280,
"height": 720,
"frameRate": 30,
"bitrateMin": 8000000,
"bitrateMax": 12000000,
"bitrateIdeal": 10000000,
"bitrate": 10000000,
"encoder": "software",
"description": "720p 30fps (8-12 Mbps)"
},
"1080p30": {
"width": 1920,
"height": 1080,
"frameRate": 30,
"bitrateMin": 15000000,
"bitrateMax": 25000000,
"bitrateIdeal": 20000000,
"bitrate": 20000000,
"encoder": "hardware",
"description": "1080p 30fps (15-25 Mbps)"
},
"4k30": {
"width": 3840,
"height": 2160,
"frameRate": 30,
"bitrateMin": 50000000,
"bitrateMax": 80000000,
"bitrateIdeal": 65000000,
"bitrate": 65000000,
"encoder": "hardware",
"description": "4K 30fps (50-80 Mbps)"
}
}
},
"discovery": {
"enabled": true,
"serviceName": "LocalStream",
"serviceType": "http"
}
}