talk icon indicating copy to clipboard operation
talk copied to clipboard

can't see other device's video

Open aarush-paul opened this issue 3 years ago • 3 comments

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

aarush-paul avatar Sep 12 '21 09:09 aarush-paul

pls reply

aarush-paul avatar Sep 13 '21 19:09 aarush-paul

Hi @aarush-paul,

Maybe because of the Turn server.

Here you can check.

  • A STUN server works if you can gather a candidate with type srflx
  • A TURN server works if you can gather a candidate with type relay

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

miroslavpejic85 avatar Jul 27 '22 13:07 miroslavpejic85

Thanks

aarush-paul avatar Jul 27 '22 13:07 aarush-paul