how to change video orientation in MediaRecorder to portrait

前端 未结 5 1373
孤城傲影
孤城傲影 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:40

     mMediaRecorder = new MediaRecorder();
            mServiceCamera.setDisplayOrientation(90);
            mMediaRecorder.setOrientationHint(90);
            mServiceCamera.unlock();
            mMediaRecorder.setCamera(mServiceCamera);
            mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
            mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
            mMediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
    

提交回复
热议问题