我一直在尝试使用webRTC来完成我的下一个创建视频聊天和测试项目的难度。我有这个简单的代码来访问相机:
navigator.getUserMedia = navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia ||
navigator.msGetUserMedia;
var video = document.querySelector('#av-chat video');
if (navigator.getUserMedia) {
navigator.getUserMedia({audio: true, video: true}, function(stream) {
video.src = window.URL.createObjectURL(stream);
}, errorCallback);
}
在chrome和mozilla上工作得很好但是当我尝试一起做它时,它不起作用。我的意思是在两个浏览器中用这个代码打开相同的文件。似乎当一个浏览器可以访问摄像机时,它会阻止其他任何人使用。
我没有在网上讨论过这个问题,所以我想知道,这只是我吗?如果没有,是否有解决方案?
答案 0 :(得分:4)
This is a limitation on Windows. On Mac OS you can use the same camera in multiple applications at the same time but not in Windows unfortunately. You have a few options here:
答案 1 :(得分:2)
Chrome和Firefox都有命令行标志,可以通过启用假设备来简化测试。有关Chrome的信息,请参阅here for Firefox以及更远一点。