I'm attempting to stream video using MediaRecorder on Android with the screen fixed to portrait mode (android:screenOrientation="portrait"). The camera hardware is naturally aligned to landscape mode. I can rotate the preview video display 90 degrees so the local preview displays correctly in portrait mode. However the captured video is still 90 degrees out:

   Camera mCamera;
   MediaRecorder mMediaRecorder;

   ...

   mCamera.setDisplayOrientation(90); 
   mCamera.setPreviewDisplay(holder);
   mCamera.startPreview();

   Parameters params = mCamera.getParameters();
   params.setRotation(90);
   mCamera.setParameters(params); 
   mCamera.unlock();

   mMediaRecorder.setCamera(mCamera);

The params.setRotation seems to have no effect whatsoever on the captured video. My target API is Android 2.2. My test hardware is Android 3.1.

Any ideas on how to rotate the captured video? Or is it not even possible?

link|improve this question

50% accept rate
Out of curiosity, why is params.setRotation... passing 180? Wouldn't 180 degrees just turn it into a backwards-landscape view? Shouldn't it be params.setRotation(90)? – Mike Gates Jan 13 at 14:05
@MikeGates I was trying various values before to see if anything had an effect. Have edited snippet back to desired value. Thanks for pointing it out. – barkside Jan 13 at 14:25
feedback

1 Answer

thy using:

mediaRecorder.setOrientationHint(rotation); // eg rotation=270

it should work.

link|improve this answer
This is getting me an error 'java.lang.RuntimeException: setParameter failed.' in a Samsung Galaxy S with Android 2.3.3 – sgallego Mar 28 at 11:50
feedback

Your Answer

 
or
required, but never shown

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