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.

Actually I want to get video capture by camera of frame rate 30 from android device, but it changes according different devices. So How can I set or restrict video capture by camera to frame rate of 30. I've tried (MediaRecorder) recorder.setVideoFrameRate(30), but it doesn't make any changes in capturing video..

Thank a lot in advance...!!:-)

share|improve this question

1 Answer

up vote 1 down vote accepted

It absolutely does change the frame rate of the recorded video. I just did a test on Xoom running Ice Cream Sandwich and without setting that value it defaulted to about 8fps. It's possible that the device you're using doesn't support the frame rate you're attempting (I used 24).

Make SURE you're following the documented instructions as to WHEN you make this call. It explicitly says you need to do after setting the format but before calling prepare.

The camera will simply ignore your setting if it can't handle the settings.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.