I haven't found any explanation for this so far. Basically I have a video recording class which works splendidly when setVideoSize() is set to 720 x 480 on my Samsung Galaxy S2.

I want it to record in the highest possible resolution so using CamcorderProfile.QUALITY_HIGH I can get the various highest quality recording properties and set them within my class. This works for file format, video frame rate, encoders and bit rate, however when I attempt to set the video size to the width and height returned by the CamcorderProfile (1920 x 1080), the video recorded is just a green flicker.

I noticed if I changed 720 x 480 to 720 x 481 it did the same thing. Therefore I can only assume this happens when the resolution isn't supported by the phone. However, the camcorder the phone came with can record in 1920 x 1080 and it produces an excellent recording.

I can only assume with such a high resolution I need to set some other parameters differently, but I just cant figure out what they might be.

Has anyone else had this problem?

Thanks in advance for any replies.

link|improve this question

what bout the video encoding format? which one did you set and what did the default app set it to? You might also want to check out the output format as well.. – bluefalcon Aug 29 '11 at 11:06
Hey Ravi, I checked out the encoding format. The highest format is H264 which is what it attempts to use, this produces the green flickering. Using H263 stops the green flickering but produces a much lower quality video, significantly lower than a 720 x 480 resolution video. As for the output format, I'll have a look at that and see if it gets it working. Cheers. – William Stewart Aug 29 '11 at 11:30
I just tried changing the output format, but it didn't help. 3gpp did the same thing and any other format caused a force close. – William Stewart Aug 29 '11 at 11:54
1  
The actual resolution seems to be - 1920 x 1088. Can check what resolutions the camera supports? And the set the resolution from that list which is closest to 1080p? – bluefalcon Aug 29 '11 at 11:57
1  
Hi Will, I downloaded a couple of video recording apps on my Galaxy S2 and all of them produces something like what you've described when set to high setting. it looks like there are many small screens that are tiled and its mostly green with some patches of purple. In one of the apps, it has an "override resolution (Galaxy SII)" option and that allows ontly up to 720p recording, as already mentioned. My friend has a Nexus S, and he has no problems with the app. It cant record in 1080p though. Im beginning to think its an S2/1080p problem? – Mel Oct 18 '11 at 5:44
show 11 more comments
feedback

3 Answers

I came across this question trying to solve the same problem.

A solution is given over on xda developer http://forum.xda-developers.com/showthread.php?t=1104970&page=8. It seems that you need to set an obscure parameter "cam_mode" for high definition recording to work:

camera = Camera.open();
Camera.Parameters param = camera.getParameters();
param.set( "cam_mode", 1 );     
camera.setParameters( param );

In mediarecorder, you can then use

mediarecorder.setVideoSize(1920, 1080);

although this will now also work:

mediarecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));

(The latter seems to have a video bitrate of 20Mb/s, so you might want to take that down a bit!) I found that I didn't have to set the preview size to 1920x1080.

(edit) You also need to set

parame.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO);

or

param.setFocusMode(Camera.Parameters.FOCUS_MODE_INFINITY);

otherwise you get a delay of a few seconds before the camera starts!

As to why Samsung has implemented the Camera in this way, I have no idea. It's certainly not developer friendly!

link|improve this answer
Great find! I'll be sure to check this solution out soon and see how it works. Cheers. – William Stewart Mar 7 at 15:21
I've just tried this but so far no luck. setting cam_mode makes the preview flicker and recording fails completely. (that is with using setProfile(). – Ants Apr 2 at 21:29
feedback

I've experienced similar problems like this in the past. What you're doing seems to be fine but here are a few suggestions that might help to debug the problem:

Ensure you are selecting a supported resolution

int cameraId = 0; // using back facing camera
Camera camera = Camera.open(cameraId);
Camera.Parameters cameraParams = camera.getParameters();
List<Camera.Size> supportedPreviewSizes = cameraParams.getSupportedPreviewSizez();

// find suitable Camera preview size from list and set your CamcorderProfile to use that new size

After you've located a suitable preview size be sure to reset your SurfaceView -- you will need to resize it to accommodate the change in aspect ratio

MediaRecorder API uses the SurfaceView so if your surface view isn't configured correctly it will result in the green flicker you're seeing

Ensure you are using a video bit rate that can support the new resolution -- try bumping the video bit rate to double what it was originally set to (*note this drastically effects your output filesize)

CamcorderProfile.QUALITY_HIGH returns the highest possible supported camera resolution. Ensure you are using the correct camera id (front vs. back) -- maybe the back facing camera supports 1080p but the front facing camera does not?

Hope the tips help!

link|improve this answer
So are you saying the size of the SurfaceView preview will have an affect on the final video that is output? Also the bit rate is configured using CamcorderProfile.QUALITY_HIGH as well so it should be the highest bit rate supported. Thanks for the help jagsaund, I will mess around with the SurfaceView sizes and see what happens. – William Stewart Oct 24 '11 at 9:43
feedback
up vote 0 down vote accepted

As Mel explained in the comment under my question, it appears that the Samsung Galaxy S2 and other devices can have problems when using any camcorder applications. I've had to add an 'Override resolution' section in my settings to allow the user to manually enter a resolution, in the case of the SGS2, the highest resolution is 720 * 480.

Thanks Mel for this solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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