Flash 中的相机质量

发布于 2024-10-06 23:46:56 字数 323 浏览 3 评论 0原文

我有这个简单的代码来访问网络摄像头:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽手叙旧 2024-10-13 23:46:56

质量很差,因为您正在使用压缩来测试它:camera.setLoopback(true);

来自 setLoopback 的文档():

指定是否使用压缩
本地视图的视频流
相机。此方法仅适用
如果您正在使用传输视频
闪存媒体服务器;设置压缩
true 让您看得更清楚
视频将如何呈现给用户
当他们实时查看时。

尽管压缩流很有用
用于测试目的,例如
预览视频质量设置,它
具有显着的加工成本,
因为当地的观点并不简单
压缩;它被压缩、编辑
对于传输,因为它会通过
实时连接,然后解压
供本地查看。

the quality is bad because you are testing it with compression: camera.setLoopback(true);.

from the documentation for setLoopback():

Specifies whether to use a compressed
video stream for a local view of the
camera. This method is applicable only
if you are transmitting video using
Flash Media Server; setting compress
to true lets you see more precisely
how the video will appear to users
when they view it in real time.

Although a compressed stream is useful
for testing purposes, such as
previewing video quality settings, it
has a significant processing cost,
because the local view is not simply
compressed; it is compressed, edited
for transmission as it would be over a
live connection, and then decompressed
for local viewing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文