When I record video by MediaRecorder, it always records in landscape mode, regardless of real device orientation. How to force MediaRecorder/Camera use real orientation ?
|
feedback
|
|
refer to Camera.Parameters.setRotation() for more information. There is an example there and instead of calling setRotation(rotation) try to call mediaRecorder.setOrientationHint(rotation) when recording video. | |||
|
feedback
|
|
Take a look at the documentation here http://developer.android.com/guide/topics/media/camera.html#capture-video The most common pitfall with the this example is the setCamera() . YOU MUST SET THE CAMERA IMMEDIATELY AFTER MAKING THE MediaRecorder otherwise you will get errors.
I hope this helps someone. Good Luck!! | |||
|
feedback
|