测试代码:
<!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是firefox 28.0
捕获的内容。 webcamera是Logitech C210
。它在skype
和chrome
中运行良好。计算机正在运行windows 8
。此外,它适用于windows 7
的其他计算机。提起bug report。有什么想法吗?
答案 0 :(得分:0)
您可能需要尝试在Firefox中更新网络摄像头驱动程序或禁用硬件加速,如this post中所述。
答案 1 :(得分:0)
该错误已在firefox-29
修复。