Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app have to record video with resolution & codec parameters being selected by user.

Here is my code to get available video resolutions:

Camera camera=Camera.open();
Parameters params = camera.getParameters();
List<Size> sizes = params.getSupportedPreviewSizes();

But how to get available video codecs for current Android device? I know about http://developer.android.com/intl/ru/guide/appendix/media-formats.html and http://developer.android.com/intl/ru/reference/android/media/MediaRecorder.VideoEncoder.html Android constants, but for example Galaxy S3 fails with my app if set videoencoder to H.263 . So how to check available codecs at each device?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.