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
Master branch throws below exception with ice_server.
urentoUtils.WebRtcPeer.prototype.server.iceServers = JSON.parse(args.ice_servers);
"cannot find server of undefined"
Release 5.1 accepts TURN config but RTCPeerConnection doesn't return any object
this.pc = new RTCPeerConnection(server, options);
Console shows below message -
Created SDP offer
Local description set
ICE negotiation completed
SDP answer received, setting remote description
PlayerEndpoint-->WebRtcEndpoint connection established
Player playing ..
Kurento media server examples based on MAVEN and spring boot are working on my system but rtsp2webrtc fails.
Queries -
Is TURN server needed ? Is TURN server supposed to be installed on the same system as KMS. (MY KMS is installed on remote)
What will be ws-uri. Is it supposed to be same as KMS ? (ws://' + '107.108.207.92' + ':8888/kurento',)
What all configuration needed for TURN (config coturn/node-turn, ICE server on client, KMS config file)
Please help to resolve the issue. Thanks
The text was updated successfully, but these errors were encountered:
@sraza295 The root cause of the issue was quite different. I was using Http URL with IP address and browser was not allowing the camera and mic permission which is probably a prerequisite to stream and play. There are 2 options to avoid this issue -
Use https url
Use http only with localhost and set camera and mic permission to allowed in browser
WebRtc is not supported on all the browsers, works best with chrome.
Browser not receiving the video stream and player remains stuck in loading gif state.
Tried to setup TURN server (Node-turn & coturn) and ice server as follows -
ws_uri: 'ws://' + '107.108.207.92' + ':8888/kurento',
ice_servers: '[{"urls": "turn:107.122.13.15:3478", "username": "optional-username", "credential": "auth-token"}]'
Master branch throws below exception with ice_server.
urentoUtils.WebRtcPeer.prototype.server.iceServers = JSON.parse(args.ice_servers);
"cannot find server of undefined"
Release 5.1 accepts TURN config but RTCPeerConnection doesn't return any object
this.pc = new RTCPeerConnection(server, options);
Console shows below message -
Created SDP offer
Local description set
ICE negotiation completed
SDP answer received, setting remote description
PlayerEndpoint-->WebRtcEndpoint connection established
Player playing ..
Kurento media server examples based on MAVEN and spring boot are working on my system but rtsp2webrtc fails.
Queries -
Please help to resolve the issue. Thanks
The text was updated successfully, but these errors were encountered: