peer.on('stream', function (stream) {
console.log('peer on stream called');
console.log(stream);
this.video = document.getElementById("peerVideo");
this.video.srcObject = stream;
this.video.play();
})
return peer
}
在这里,我从远程机器获取视频流。我已经登录并检查了我确定我正在获得一个远程流,因为源的流 id 与我在这里收到的相同。
this.video.srcObject = stream;
此行生成 -> 错误 Uncaught (in promise) DOMException: The play() request was interrupted by a new load request.
我尝试了很多,但不知道如何解决这个问题。
感谢帮助。