How to get Video Encoding Parameters details of an Android device?

I wanted to know if there is any API that provides supported video encoding parameters of an Android device. I have gone through the link http://developer.android.com/guide/appendix/media-formats.html. The link mentions the supported formats but different devices may have different parameters support. I want to get those parameters in order to let the user know before hand that whether their device would be able to play back the videos within the app or not.

For example, HD feature may not be available on every device so if there is any API that provides that information then user can be informed that the device do not support it. Similarly, for other encoding parameters such as bitrate, frame rate, video resolution.


You may take a look at the answer I provided here: Detect max video resolution support for a mobile device on responsive website

It explains the solution in detail and is currently the only one unfortunately.

链接地址: http://www.djcxy.com/p/84038.html

上一篇: 在Android 3.2.1中使用MediaMetadataRetriever从视频中获取帧

下一篇: 如何获得Android设备的视频编码参数详细信息?