当我以纵向或横向模式录制视频时,生成的视频
方向与实际方向不同。我找到了使用setDisplayOrientation()
方法的解决方案,但它也不起作用。它给出了RuntimeException
。请告诉我如何解决这个问题。
提前致谢。 这是在服务不在活动
camera = Camera.open(cameraType);
camera.unlock();
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.setDisplayOrientation(result);
答案 0 :(得分:0)
您可以尝试以录制的方向录制视频(但要注明当前方向)并使用
设置视频的方向mMediaRecorder。 setOrientationHint (degreesRotation)
至于运行时异常,可能是因为相机的预览正在运行(根据开发人员指南,"从API级别14开始,此方法' setDisplayOrientation&# 39;可以在预览处于活动状态时调用。")。因此, 在更改方向之前停止预览和/或释放相机。