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.

I had this problem with my app (ScareApp) that uses the front facing camera to record video. I "think" I've finally resolved the issue, so thought I would post it here for any developers that run into the same thing....

Basically.. The android MediaRecorder allows you to define the Video and Audio Encoder, and according to the docs, DEFAULT can be used for each. However, this refers to the main camera's settings, which is often a far higher spec than the front facing camera. DEFAULT on the Droid Razr for example, selects an encoding (MPEG_4_SP) that isn't available for the Front facing camera, and this results in an empty (0kb) file being produced (or on some other devices a Camera 100 - start failed error).

My other option was to use the CameraProfile.get method to lookup what the HIGH_QUALITY settings, but again, this by default uses the main camera. To get around this, you can set the ID of the front facing camera by using

CameraProfile.get(<CameraID>, CamcorderProfile.QUALITY_HIGH);

My current work around is as follows:

CamcorderProfile profile = CamcorderProfile.get(FrontFacingCameraId, CamcorderProfile.QUALITY_HIGH);
if(profile != null) {
    _recorder.setAudioEncoder(profile.audioCodec);      
    _recorder.setVideoEncoder(profile.videoCodec);
}else {
    //default to basic H263 and AMR_NB if profile not found
    _recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);       
    _recorder.setVideoEncoder(MediaRecorder.VideoEncoder.H263);
}

Or alternatively, you can skip setting the Encoders, and just use

_recorder.setProfile(profile);

But as my app allows the user to select the resolution, I need to set the encoder's.

Hopefully this will help someone and save the time and hassle it has caused me!

Cheers, Mark

share|improve this question
This works for me on a Sony Ericsson W8 device. – kdroider Sep 28 '12 at 2:35

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.