This is how I tackle the problem of attempting to use certain video recording sizes that may or may not be available on different devices. I start by attempting to record with an ideal resolution, and use try-catch blocks in order to shut down and retry opening the video camera at a different resolution. This will likely not be a huge issue with future versions of android due to increased support for CamcorderProfiles, but as of now there are many devices that simply do not accurately share available video resolutions.
I call the initializeVideoRecorder fn from an activity and I use a custom class I created called a PreviewSize, which is basically just a width and height neatly packaged. I defined these constant PreviewSizes above.
I think the important thing is to release everything and retry prior to attempting to connect to a different preview size. I do this using the releaseVideoCamera function. You are also calling lock prior to unlock which seems potentially problematic (maybe not though).
Anyways here is my code. I have removed some portions, and left out certain functions unrelated to your needs:
/**Standard 720p video size (1280x720) for both front and back.*/
private static final PreviewSize DEFAULT_VIDEO_SIZE = new PreviewSize(720, 1280);
/**Fallback 480p video size (720x480) for back cameras that don't support 720p */
private static final PreviewSize BACKUP_VIDEO_SIZE = new PreviewSize(480, 720);
/** Default pre-ICS front facing camera size (a version of 480p) */
private static final PreviewSize PRE_ICS_DEFAULT_FRONT_VIDEO_SIZE = new PreviewSize(480, 640);
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public boolean initializeVideoRecorder(){
if (! externalStorageAvailable()) return false;
mCamera.stopPreview();
if (ApiHelper.PRE_ICS && mCameraSide == CameraUtils.FRONT_FACING_CAMERA){
return initializeVideoRecorderWithoutCamcorderProfile(PRE_ICS_DEFAULT_FRONT_VIDEO_SIZE);
} else return initializeVideoRecorderWithoutCamcorderProfile(DEFAULT_VIDEO_SIZE);
}
@TargetApi(Build.VERSION_CODES.GINGERBREAD)
private boolean initializeVideoRecorder(PreviewSize videoSize){
mCamera.unlock();
mVideoRecorder = new MediaRecorder();
mVideoRecorder.setCamera(mCamera);
mVideoRecorder.setAudioSource(MediaRecorder.AudioSource.CAMCORDER);
mVideoRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
CamcorderProfile dummyCamcorderProfile;
if (Build.VERSION.SDK_INT > 8) dummyCamcorderProfile = CamcorderProfile.get(mCameraSide, CamcorderProfile.QUALITY_HIGH);
else dummyCamcorderProfile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
customSetProfile(dummyCamcorderProfile);
mVideoRecorder.setVideoSize(videoSize.height, videoSize.width);
//Set the orientation hint here if need be... i left that code out
mVideoFile = someFunctionThatGivesYouAVideoFile();
mVideoRecorder.setOutputFile(mVideoFile.toString());
mVideoRecorder.setPreviewDisplay(yourCameraSurface);
try {
mVideoRecorder.prepare();
} catch (IllegalStateException e) {
releaseVideoCamera();
return false;
} catch (IOException e) {
Log.d(TAG, "IOException preparing MediaRecorder: " + e.getMessage());
releaseVideoCamera();
return false;
}
try {
mVideoRecorder.start();
} catch (RuntimeException e) {
releaseVideoCamera();
if (videoSize.equals(DEFAULT_VIDEO_SIZE)) {
if (mCameraSide == CameraUtils.BACK_FACING_CAMERA) return initializeVideoRecorder(BACKUP_VIDEO_SIZE);
else return initializeVideoRecorder(PRE_ICS_DEFAULT_FRONT_VIDEO_SIZE);
}
else return false;
}
return true;
}
public void customSetProfile(CamcorderProfile profile) {
mVideoRecorder.setOutputFormat(profile.fileFormat);
mVideoRecorder.setVideoFrameRate(profile.videoFrameRate);
mVideoRecorder.setVideoEncoder(profile.videoCodec);
mVideoRecorder.setVideoEncodingBitRate(1000000);
mVideoRecorder.setAudioEncodingBitRate(profile.audioBitRate);
mVideoRecorder.setAudioChannels(profile.audioChannels);
mVideoRecorder.setAudioSamplingRate(profile.audioSampleRate);
mVideoRecorder.setAudioEncoder(profile.audioCodec);
}
public void releaseVideoCamera(){
mVideoRecorder.reset();
mVideoRecorder.release();
mVideoRecorder = null;
try {
mCamera.reconnect();
} catch (IOException e) {
// TODO: handle this exception...
}
mCamera.lock();
}