get rtcConfig dynamically from the server

This commit is contained in:
schlagmichdoch 2023-02-24 18:08:48 +01:00
parent 74b88c2e7d
commit 66359da2ca
5 changed files with 130 additions and 49 deletions

16
rtc_config_example.json Normal file
View file

@ -0,0 +1,16 @@
{
"sdpSemantics": "unified-plan",
"iceServers": [
{
"urls": "stun:stun.l.google.com:19302"
},
{
"urls": "stun:openrelay.metered.ca:80"
},
{
"urls": "turn:openrelay.metered.ca:443",
"username": "openrelayproject",
"credential": "openrelayproject"
}
]
}