当我将相机添加到现有连接时,我遇到了这个错误,这是我连接或添加附加相机到从第一个用户到第二个用户的连接的代码
if (connection.mediaConstraints.video.optional.length && connection.attachStreams.length)
{
connection.mediaConstraints.video.optional[0].sourceId = videoSourceId;
var stream = event.stream;
connection.removeStream({ audio: true });
connection.addStream({ audio: true, video: true });
videoId = this.id;
}
通过搜索此错误,我尝试了所有方法,但如果有人可以提供我的解决方案,则没有得到任何解决方案。