The built-in camera app on the Rezound is able to record video at 1080p, but I'm having trouble doing this from the Android API. Everything works great if I use the settings in CamcorderProfile.QUALITY_HIGH, but that only gives me video at 720x480. When I try to increase the resolution to 1080p, my app freezes on MediaRecorder.start() and any app that tries to use the camera stops working until I restart my phone.
Here's the code I'm using to configure MediaRecorder:
CamcorderProfile prof = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
if(false){
prof.videoFrameHeight=1080;
prof.videoFrameWidth=1920;
}
prof.videoFrameRate=24;
prof.audioCodec=MediaRecorder.AudioEncoder.AAC;
prof.audioSampleRate=44100;
prof.audioBitRate=96;
prof.audioChannels=2;
mMediaRecorder.setProfile(prof);
The app freezes when I enable the code inside the if block. I've tried to exactly copy the settings of the videos I get when I record 1080p from the native camera app.
It would be great to track down the source of the native camera app used on the Rezound. I checked out the native camera app in the 2.3.4 release of Android and it doesn't look like it can support any resolution higher than the one specified in CamcorderProfile.QUALITY_HIGH.
