You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Its working in same country network but if one user from india and another from other country then its not working and not showing any audio/video. Let me know pls if is required any changes in configuration
The text was updated successfully, but these errors were encountered:
From what you mention it seems a Stun/Turn problem, you should configure your own server using for example: Coturn (With Ubuntu), then you use this code and modify it with your data:
// first step, ignore default STUN+TURN serversconnection.iceServers=[];// second step, set STUN urlconnection.iceServers.push({urls: 'stun:yourSTUN.com:port'});// last step, set TURN url (recommended)connection.iceServers.push({urls: 'turn:yourTURN.com:port',credential: 'password',username: 'username'});connection.openOrJoin('your-room-id');
Hi, Its working in same country network but if one user from india and another from other country then its not working and not showing any audio/video. Let me know pls if is required any changes in configuration
The text was updated successfully, but these errors were encountered: