mdn / samples-server

MDN samples server; used for samples that can't be hosted in-place on MDN, plus back-end server-side code for samples that need it.
https://developer.mozilla.org/
Creative Commons Zero v1.0 Universal
957 stars 930 forks source link

How to attach remote video from another peer to <video> tag ? #104

Open Msahique opened 4 years ago

Msahique commented 4 years ago

We are not able to stream video to another peer , but able to see local video. Our hunch is that the remote stream coming from the other peer is not binding to the video element.. Thanks in advance. function handleTrackEvent(event) { log("*** Track event"); document.getElementById("received_video").srcObject = event.streams[0]; document.getElementById("hangup-button").disabled = false; }