firefox捕捉网络摄像头的视频噪音 [英] firefox captures video noise from web camera

查看:178
本文介绍了firefox捕捉网络摄像头的视频噪音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

测试代码:

 <!doctype html> 
< html>
< body>
< video id =v1autoplay =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>

这个 firefox 28.0 捕获的内容。 webcamera是 Logitech C210 。它在 skype chrome 中工作正常。电脑正在运行 windows 8 。此外,它可以在其他计算机上使用 windows 7 。提交了错误报告。任何想法?

解决方案

这个错误在 firefox-29


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. The webcamera is Logitech C210. It works fine in skype and chrome. The computer is running windows 8. Also, it works on other computer with windows 7. Filed a bug report. Any thoughts?

解决方案

The bug is fixed in firefox-29.

这篇关于firefox捕捉网络摄像头的视频噪音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆