(Android SDK 2.1)使用 setAudioSource 和 setVideoSource 时出现错误
当我运行 setAudioSource 和 setVideoSource 时出现以下错误。
03-16 10:26:25.302: 错误/audio_input(52): 不支持的参数: x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value
03-16 10:26:25.302: 错误/audio_input (52):VerifyAndSetParameter 失败
03-16 10:26:25.302:错误/CameraInput(52):不支持的参数(x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value)
03-16 10: 26:25.302: 错误/CameraInput(52): VerifiyAndSetParameter 在参数 #0 上失败
此错误发生在模拟器和设备上。 (我正在使用 Google Nexus One)
我已经设置了 CAMERA 和 RECORD_AUDIO 用户权限。我花了很多天,但仍然无法弄清楚这个运行时错误的原因是什么。
I got the follow error when I run setAudioSource and setVideoSource.
03-16 10:26:25.302: ERROR/audio_input(52): unsupported parameter: x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value
03-16 10:26:25.302: ERROR/audio_input(52): VerifyAndSetParameter failed
03-16 10:26:25.302: ERROR/CameraInput(52): Unsupported parameter(x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value)
03-16 10:26:25.302: ERROR/CameraInput(52): VerifiyAndSetParameter failed on parameter #0
This error happen on both emulator and the device. (I am using Google nexus one)
I have set the CAMERA and RECORD_AUDIO user permission already. I spent many days but I still cannot figure out what is the cause of this runtime error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能请求系统不支持的摄像头和/或声音输入参数。您可以使用
Camera.Parameters.getSupportedXX()
函数来查询支持的参数。You're probably requesting camera and/or sound input parameters that the system doesn't support. You can use
Camera.Parameters.getSupportedXX()
functions to query for supported parameters.