【问题标题】:firefox captures video noise from web cameraFirefox 从网络摄像头捕获视频噪声
【发布时间】:2014-04-23 17:39:59
【问题描述】:

测试代码:

<!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>

Thisfirefox 28.0 捕获的内容。网络摄像头是Logitech C210。它在skypechrome 中运行良好。计算机正在运行windows 8。此外,它还可以在具有windows 7 的其他计算机上运行。提交了bug report。有什么想法吗?

【问题讨论】:

标签: javascript firefox webcam webrtc


【解决方案1】:

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

【讨论】:

    【解决方案2】:

    该错误已在firefox-29 中修复。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-04-27
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多