使用 J2ME 更改 n95 中的视频分辨率
我们尝试使用捕获网址中的参数,如下所示:
capture://video?height=480&width=360
宽度和高度的组合不起作用。 创建播放器时我们总是收到错误-6。
capture://video 工作正常,但视频小得离谱。
N95 可以以更高分辨率录制吗?
We've tried using the parameters in the capture url as documented:
capture://video?height=480&width=360
No combination of width and height works. We always get an error -6 when creating the player.
capture://video works fine but the videos are ridiculously small.
Is it possible to record at a higher resolution on the N95?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-6 是以下 Symbian C++ 错误代码: KErrArgument 参数超出范围。
至少,这是有道理的。
您或许可以在诺基亚 JavaME 开发人员库中找到答案:
http://www.forum.nokia.com/Resources_and_Information/Documentation/Java/< /a>
类似的东西
“注意:S60 第三版 FP2:所有 FP2 产品都支持 QCIF (176x144) 分辨率。其他分辨率 - 例如 CIF (352x288)、QVGA (320x240) 和 VGA (640x480) - 可能在某些设备中受支持。”
为您提供了一些要尝试的具体值。
请注意,您可能需要在捕获网址中指定“video/3gp”等编码。
-6 is the following Symbian C++ error code : KErrArgument An argument is out of range.
At Least, it makes sense.
You can probably find your answer in the Nokia JavaME developer library:
http://www.forum.nokia.com/Resources_and_Information/Documentation/Java/
something like
"Note: S60 3rd Ed. FP2: All FP2 products support QCIF (176x144) resolution. Other resolutions – e.g. CIF (352x288), QVGA (320x240) and VGA (640x480) – may be supported in some devices. "
gives you a few specific values to try.
Note that you may need to specify an encoding like "video/3gp" in you capture url.