bashan
bashan

Reputation: 3602

iPhone App - Show AVFoundation video on landscape mode

I am using the AVCam example App from Apple.

This example uses AVFoundation in order to show video on a view.

I am trying to make from the AVCam a landscape App with no luck.

When screen orientation changes the video is shown rotated on the view. Is there a way of handling this problem?

Upvotes: 3

Views: 4271

Answers (3)

Jeff Stone
Jeff Stone

Reputation: 319

Declare

- (BOOL)shouldAutorotate;

in your .h .

Then do:

- (BOOL)shouldAutorotate {
    return NO;
}

in your .m

This will force it to not rotate.

Upvotes: 0

Samssonart
Samssonart

Reputation: 3593

When you create your preview layer:

captureVideoPreviewLayer.orientation = UIInterfaceOrientationLandscapeLeft;

And the methods to manage rotations:

-(void)willAnimateRotationToInterfaceOrientation:
        (UIInterfaceOrientation)toInterfaceOrientation 
        duration:(NSTimeInterval)duration {

  [CATransaction begin];
  if (toInterfaceOrientation==UIInterfaceOrientationLandscapeLeft){
    captureVideoPreviewLayer.orientation = UIInterfaceOrientationLandscapeLeft;
  } else {        
    captureVideoPreviewLayer.orientation = UIInterfaceOrientationLandscapeLeft;
  }

 [CATransaction commit];
 [super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
}

-(BOOL)shouldAutorotateToInterfaceOrientation:
        (UIInterfaceOrientation)interfaceOrientation {

  [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];

  return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}

That worked for me.

Upvotes: 10

Steve McFarlin
Steve McFarlin

Reputation: 3596

Are you using the orientation and gravity settings for the preview layer?

previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:session];
previewLayer.frame = CGRectMake(0, 0, 480, 300); 
previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
previewLayer.orientation =  AVCaptureVideoOrientationLandscapeRight;
previewLayer.automaticallyAdjustsMirroring = YES;

Upvotes: 0

Related Questions