我创建了相机活动并将其方向修改为清单中的肖像。
<activity
android:name=".ui.activity.CameraActivity"
android:screenOrientation="portrait"
>
当我通过mediarecorder拍摄视频时,我需要了解将视频保存到正确位置的方向。
mediaRecorder.setOrientationHint(orentation);
我正在接受这个功能的定位
public int setCameraDisplayOrientation(Activity activity,
int cameraId, android.hardware.Camera camera) {
android.hardware.Camera.CameraInfo info =
new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(cameraId, info);
int rotation = activity.getWindowManager().getDefaultDisplay().getRotation();
int degrees = 0;
switch (rotation) {
case Surface.ROTATION_0:
degrees = 0;
break;
case Surface.ROTATION_90:
degrees = 90;
break;
case Surface.ROTATION_180:
degrees = 180;
break;
case Surface.ROTATION_270:
degrees = 270;
break;
}
int result;
if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
result = (info.orientation + degrees) % 360;
result = (360 - result) % 360; // compensate the mirror
} else { // back-facing
result = (info.orientation - degrees + 360) % 360;
}
Camera.Parameters params = camera.getParameters();
params.setRotation(result);
camera.setParameters(params);
camera.setDisplayOrientation(result);
return result;
}
如果方向未从清单中修复,此方法可以正常工作,但由于我需要修正方向,因此我的视频仅以纵向状态保存。
帮我确定横向模式。
答案 0 :(得分:0)
您可以通过以编程方式更改视频模式中的活动方向来解决此问题:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
只检测相机模式(图像/视频)并相应地更改方向