简体   繁体   English

firefox捕获来自网络摄像机的视频噪声

[英]firefox captures video noise from web camera

The test code: 测试代码:

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

This is what firefox 28.0 captures. 就是firefox 28.0捕获的内容。 The webcamera is Logitech C210 . 网络摄像头是Logitech C210 It works fine in skype and chrome . 它在skypechrome工作正常。 The computer is running windows 8 . 计算机正在运行windows 8 Also, it works on other computer with windows 7 . 此外,它还可以在其他装有windows 7计算机上使用。 Filed a bug report . 提交了错误报告 Any thoughts? 有什么想法吗?

你可能想尝试更新摄像头驱动程序或禁用Firefox中的硬件加速,在提到这个职位

该错误已在firefox-29修复。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM