-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.dev
73 lines (69 loc) · 1.68 KB
/
.env.dev
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
71
72
73
DATABASE_URL = "postgresql://postgres:123456@localhost:5432/mediasoup"
DATABASE_SYNC = 1
DATABASE_LOGGING = 1
# PORT = 3000
LISTEN_HOST = '127.0.0.1'
# SLAVE_FOR = producer
SLAVE_MAX_TRANSPORT_PER_WORKER = 500
MEDIASOUP_LOG_LEVEL = warn
MEDIASOUP_LOG_TAGS = 'info ice dtls rtp srtp rtcp rtx bwe score simulcast svc sctp'
MEDIASOUP_NUMBER_OF_WORKERS = 2
# must open port range on internet for client to connect
MEDIASOUP_RTC_MIN_PORT = 20000
MEDIASOUP_RTC_MAX_PORT = 40000
MEDIASOUP_MEDIA_CODECS = '
[
{
"kind":"audio",
"mimeType":"audio/opus",
"clockRate":48000,
"channels":2
},
{
"kind":"video",
"mimeType":"video/VP8",
"clockRate":90000,
"parameters":{
"x-google-start-bitrate":1000
}
},
{
"kind":"video",
"mimeType":"video/VP9",
"clockRate":90000,
"parameters":{
"profile-id":2,
"x-google-start-bitrate":1000
}
},
{
"kind":"video",
"mimeType":"video/h264",
"clockRate":90000,
"parameters":{
"packetization-mode":1,
"profile-level-id":"4d0032",
"level-asymmetry-allowed":1,
"x-google-start-bitrate":1000
}
},
{
"kind":"video",
"mimeType":"video/h264",
"clockRate":90000,
"parameters":{
"packetization-mode":1,
"profile-level-id":"42e01f",
"level-asymmetry-allowed":1,
"x-google-start-bitrate":1000
}
}
]'
MEDIASOUP_WEBRTC_TRANSPORT_MAX_INCOMING_BITRATE = 1500000
MEDIASOUP_WEBRTC_TRANSPORT_INITIAL_AVAILABLE_OUTGOING_BITRATE = 1000000
MEDIASOUP_WEBRTC_TRANSPORT_LISTEN_IPS = '[
{
"ip": "192.168.6.29",
"announcedIp": null
}
]'