我正在尝试实现Instagram视频裁剪功能。为此,我需要获得视频的正确方向,我将以正确的宽高比布置我的MPMoviePlayerController
视图,然后用户将能够平移视频并显示方形视频行动紧张。
我在获取正确的视频方向时遇到问题。我正在使用以下代码
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:fileUrl options:nil];
NSArray *tracks = [asset tracksWithMediaType:AVMediaTypeVideo];
AVAssetTrack *track = [tracks objectAtIndex:0];
UIInterfaceOrientation orientation =[self orientationForTrack:track];
// method to get orientation
- (UIInterfaceOrientation)orientationForTrack:(AVAssetTrack *)videoTrack
{
CGSize size = [videoTrack naturalSize];
CGAffineTransform txf = [videoTrack preferredTransform];
if (size.width == txf.tx && size.height == txf.ty)
return UIInterfaceOrientationLandscapeRight;
else if (txf.tx == 0 && txf.ty == 0)
return UIInterfaceOrientationLandscapeLeft;
else if (txf.tx == 0 && txf.ty == size.width)
return UIInterfaceOrientationPortraitUpsideDown;
else
return UIInterfaceOrientationUnknown;
}
我遇到的问题是有时候实际上是纵向的视频,上面的代码片段将其归类为横向,反之亦然。我只需要知道两种状态的视频方向(风景或肖像)。我想要MPMoviePlayerController
正在解释的完全相同的方向值。我的应用程序仅支持纵向方向。任何帮助都将受到高度赞赏。
PS:以上代码适用于从iphone相机捕获的视频,通过whatsapp下载或共享的视频导致问题。
答案 0 :(得分:5)
解决此问题的唯一方法是使用以下方法从视频中捕获缩略图:
- (void)requestThumbnailImagesAtTimes:(NSArray *)playbackTimes timeOption:(MPMovieTimeOption)option
然后在缩略图上添加检查,如:
if (singleFrameImage.size.height > singleFrameImage.size.width) {
// potrait video
} else {
// landscape video
}
此解决方案在从iPhone相机拍摄的视频以及从互联网上随机下载的一组(8-10)视频中进行测试。
答案 1 :(得分:4)
AVAssetTrack
拥有财产preferredTransform
。您可以使用它来查找视频的实际方向。
AVAssetTrack *videoAssetTrack = [[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
UIImageOrientation videoAssetOrientation_ = UIImageOrientationUp;
CGFloat videoAngle = RadiansToDegrees(atan2(videoAssetOrientation_.b, videoAssetOrientation_.a));
int orientation = 0;
switch ((int)videoAngle) {
case 0:
orientation = UIImageOrientationRight;
break;
case 90:
orientation = UIImageOrientationUp;
break;
case 180:
orientation = UIImageOrientationLeft;
break;
case -90:
orientation = UIImageOrientationDown;
break;
default:
//Not found
break;
}