how to change video orientation in MediaRecorder to portrait

前端 未结 5 1370
孤城傲影
孤城傲影 2020-12-13 19:11

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 ?

5条回答
  •  [愿得一人]
    2020-12-13 19:28

    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.

提交回复
热议问题