Flash 中的相机质量
我有这个简单的代码来访问网络摄像头:
var camera = Camera.getCamera();
camera.setLoopback(true);
camera.setQuality( 0, 100 );
if (camera != null){
myVid.attachCamera(camera);
}
视频的质量非常差,压缩片段很大。 我使用内置网络摄像头作为测试,所以我不抱太大期望。但我所看到的对于我的网络摄像头来说并不正常。
那么如何设置视频的质量呢? 如果删除 setQuality 调用,我看不到质量有任何差异。
I have this simple code to access the webcam:
var camera = Camera.getCamera();
camera.setLoopback(true);
camera.setQuality( 0, 100 );
if (camera != null){
myVid.attachCamera(camera);
}
The quality of the video is extremely bad, with big compression fragments.
I am using a built-in webcam as test, so I don't expect too much. But what I see is not normal for my webcam.
So how do I set the quality of the video?
I cannot see any difference in quality if I remove the setQuality call.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
质量很差,因为您正在使用压缩来测试它:
camera.setLoopback(true);
。来自 setLoopback 的文档():
the quality is bad because you are testing it with compression:
camera.setLoopback(true);
.from the documentation for setLoopback():