Android setVideoEncodingBitRate() 未在 MediaRecorder 包中定义
我正在尝试使用 MediaRecorder.setVideoEncodingBitRate(int) 更改 Android 上视频录制的编码比特率。
我查看了 android 文档,它指出了此方法来设置/更改比特率,但是当我尝试使用此方法时,我得到 setVideoEncodingBitrRate(int)
is not Define in package MediaRecorder< /代码>。
为什么会这样呢?
I am trying to the change the encoding bit rate of the video recording on Android using MediaRecorder.setVideoEncodingBitRate(int)
.
I looked in the android documentation and it states this method to set/change the bit rate but when I try to use this method I am getting setVideoEncodingBitrRate(int)
is not defined in package MediaRecorder
.
Why it is so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您应该检查您使用的 API 版本
setVideoEncodingBitRate()
是否仅适用于 API v8 或 Android 2.1如果您使用的版本低于该版本,它将不可用 :D
您也可以像这样使用它这
I suggest you should check that which API version you are using
setVideoEncodingBitRate()
just come on API v8 or Android 2.1If you use version less than that it would not be available :D
Also you could use it like this
setVideoEncodingBitRate
是一个实例方法,似乎您试图将其作为静态方法调用(MediaRecorder.setVideoEncodingBitRate(int)
),而是从 MediaRecorder 对象中调用它。另外,您是否导入了 android.media.MediaRecorder ?
setVideoEncodingBitRate
is an instance method, seems that you are trying to call it as a static method (MediaRecorder.setVideoEncodingBitRate(int)
), instead, call it from the MediaRecorder object.Also, did you import
android.media.MediaRecorder
?