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
I am encountering this error:
"DOMException: The play() request was interrupted by a new load request."
This may reference on this code:
const remoteVideo = document.getElementById('audioRemote')
const localVideo = document.getElementById('audioRemote')
s.on('trackAdded', function () {
// We need to check the peer connection to determine which track was added
const pc = s.sessionDescriptionHandler.peerConnection
// Gets remote tracks
const remoteStream = new MediaStream()
pc.getReceivers().forEach(function (receiver) {
remoteStream.addTrack(receiver.track)
})
remoteVideo.srcObject = remoteStream
remoteVideo.play()
})
The text was updated successfully, but these errors were encountered:
I am encountering this error:
"DOMException: The play() request was interrupted by a new load request."
This may reference on this code:
The text was updated successfully, but these errors were encountered: