0

我是 Flash 新手,我正在使用 red5 录像机录制视频。我使用的相机是 2 兆像素左右的 imac。虽然我正在录制视频,但录制完成后,我将视频保存在 vzaar 中。当我从 vzzar 获取视频时,视频被严重像素化。我怎样才能使视频正常?

cam.setQuality(0,90);

我将此代码保存在 as 文件中。但这没有用。

我怎样才能提高视频的质量,你能建议吗?

提前致谢 :)

4

2 回答 2

2

您可以阅读Camera类的文档以更好地理解属性。

无论如何,这是获得最佳网络摄像头质量的代码建议:

var camera:Camera = Camera.getCamera()
//width, height of the video you are recording and fps(frame per seconds)
camera.setMode(400, 400, 15);
//set the bandwith to 0 which means that it will use all it can, 
//and the quality to 100 which is the best quality it can get
camera.setQuality(0, 100);
于 2013-07-09T05:18:29.523 回答
0

本文将帮助您使用 red5 和 flash 获得更好的视频质量

http://www.technogumbo.com/tutorials/Recording-Decent-Quality-Video-And-Audio-With-Flash-and-Red5/index.php

于 2013-07-17T08:53:41.500 回答