Reputation:
How to get the orientation of a video which is selected from the gallery in UIImagepickerController
?
UIImagePickerController * videoRecorder = [[UIImagePickerController alloc] init];
videoRecorder.delegate = self;
videoRecorder.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
videoRecorder.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeMovie, nil];
[self presentViewController:videoRecorder animated:YES completion:nil];
Upvotes: 3
Views: 208
Reputation: 40030
Get your AVAsset from ALAssetsLibrary and use following category:
@interface ALAssetsLibrary (VideoOrientation)
+ (UIInterfaceOrientation)orientationForTrack:(AVAsset *)asset;
@end
@implementation ALAssetsLibrary (VideoOrientation)
+ (UIInterfaceOrientation)orientationForTrack:(AVAsset *)asset
{
NSArray *videoAssets = [asset tracksWithMediaType:AVMediaTypeVideo];
if (!videoAssets.count)
{
NSLog(@"No video assets found.");
return UIInterfaceOrientationPortrait;
}
// Get the video track.
AVAssetTrack *videoTrack = [videoAssets objectAtIndex:0];
CGSize size = [videoTrack naturalSize];
CGAffineTransform preferredTransform = [videoTrack preferredTransform];
// Return interface orientation based on
// the preferred transform and size of the video.
if (size.width == preferredTransform.tx &&
size.height == preferredTransform.ty)
{
return UIInterfaceOrientationLandscapeRight;
}
else if (preferredTransform.tx == 0 &&
preferredTransform.ty == 0)
{
return UIInterfaceOrientationLandscapeLeft;
}
else if (preferredTransform.tx == 0 &&
preferredTransform.ty == size.width)
{
return UIInterfaceOrientationPortraitUpsideDown;
}
else
{
return UIInterfaceOrientationPortrait;
}
}
@end
Upvotes: 1