Recorded video in landscape mode is shown in wrong direction
When I record a video in landscape mode, the video is shown in the wrong direction (first image). It is shown correctly when I record in portrait (second image).
Also I do not have this problem when I capture a picture.

I have the same problem.
@yuyedaidao are you using the latest version 4.1 ?
I will try,thx
Fixed problem by replacing below lines at line number 245 in file LLSimpleCamera.m if([self.session canAddInput:_videoDeviceInput]) { [self.session addInput:_videoDeviceInput]; self.captureVideoPreviewLayer.connection.videoOrientation = AVCaptureVideoOrientationPortrait; }
Still Getting Same issues. My requirement is that when record video in Horizontal direction(where App is in portrait mode) , recorded image should be in landscape mode
Fixed problem by replacing below lines at line number 802 in file LLSimpleCamera.m
[[UIApplication sharedApplication] statusBarOrientation] to [[UIDevice currentDevice] orientation]
it's working Fine.