talk
talk copied to clipboard
can't see other device's video
hello i was testing the app on two of my devices on https://usetalk.io but i cant see the video neither can i hear the audio. i can see the other device join but no video or audio can be heard. pls help me out
pls reply
Hi @aarush-paul,
Maybe because of the Turn server.
Here you can check.
- A
STUN
server works if you can gather a candidate with typesrflx
- A
TURN
server works if you can gather a candidate with typerelay
I suggest to using only one Stun and one Turn as IceServers.
With this setting, probably it should work :)
const ICE_SERVERS = [
{
"urls": "stun:stun.l.google.com:19302"
},
{
"urls": "turn:openrelay.metered.ca:443",
"username": "openrelayproject",
"credential": "openrelayproject"
}
];
Regards
Thanks