Javascript firefox从网络摄像头捕捉视频噪音

Javascript firefox从网络摄像头捕捉视频噪音,javascript,firefox,webcam,webrtc,Javascript,Firefox,Webcam,Webrtc,测试代码: <!doctype html> <html> <body> <video id="v1" autoplay="autoplay"></video> <script> navigator._getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia; navigator._get

测试代码:

<!doctype html>
<html>
<body>
<video id="v1" autoplay="autoplay"></video>
<script>
navigator._getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
navigator._getUserMedia({video: true}, function(stream) {
    document.getElementById('v1').src = URL.createObjectURL(stream);
}, function() {});
</script>
</body>
</html>

这就是Firefox28.0所捕捉到的。网络摄像机是罗技C210。它在skype和chrome中运行良好。计算机正在运行windows 8。此外,它也适用于其他使用Windows7的计算机。提交了一份申请。有什么想法吗?

您可能希望尝试更新网络摄像头驱动程序或禁用Firefox中的硬件加速,如中所述。

该错误已修复。

使用最新浏览器,因为这是一个变化非常快的字段。有关供应商前缀和最新代码的指南,请参阅