Android Camera recording video but plays upside down

后端 未结 10 1556
南旧
南旧 2020-12-10 04:42

I record a video using the below code and it records perfectly, but when it plays the video, it plays it upside down.

I tried settings mrec.setOrientationHint(

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-10 05:03

    This should be called before the mrec.prepare(); method

    setOrientationHint(degrees);
    

    Link

    EDIT: Try mCamera.setDisplayOrientation(degrees);

    0 for landscape
    90 for portrait
    180 & 270 don't work very well and give weird results.
    

    Some older players and encoders do not interpret this flag which is why the video plays upside down.

提交回复
热议问题