naturalSize从AVURLAsset返回错误的方向

时间:2012-07-01 13:16:32

标签: iphone xcode video avfoundation avurlasset

我使用[here] [1]中找到的代码将视频附加到使用UIImagePickerController拍摄的视频上。

视频是纵向播放的,但是一旦我使用AVURLASSet,它就会转向横向而不是画像而我无法找到原因?

任何人都能指出我正确的方向吗?

我的代码:

-(IBAction)addWaterMark:(id)sender {
 AVURLAsset* videoAsset = [[AVURLAsset alloc]initWithURL:[NSURL fileURLWithPath:tempPath] options:nil];
AVMutableComposition* mixComposition = [AVMutableComposition composition];

AVMutableCompositionTrack *compositionVideoTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeVideo  preferredTrackID:kCMPersistentTrackID_Invalid];
AVAssetTrack *clipVideoTrack = [[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
[compositionVideoTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, videoAsset.duration) 
                               ofTrack:clipVideoTrack
                                atTime:kCMTimeZero error:nil];

[compositionVideoTrack setPreferredTransform:[[[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0] preferredTransform]]; 

CGSize videoSize = [videoAsset naturalSize]; 
NSLog(@"%f %f",videoSize.width,videoSize.height);
}

此时我获得了480,360而不是正确的temppath大小

2 个答案:

答案 0 :(得分:2)

找到详细的教程,介绍如何使用AVfoundation简介here

编辑和操作视频
  

如果它们是风景,我们可以使用我们提供的naturalSize属性,但如果它们是肖像,我们必须翻转naturalSize以使宽度现在是高度,反之亦然

答案 1 :(得分:0)

我在这里留下了正确的代码,以防其他人需要,尽管你选择了自己的答案是正确的。

//readout the size of video
AVAssetTrack *vT = nil;
if ([[asset tracksWithMediaType:AVMediaTypeVideo] count] != 0)
{
    vT = [[asset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
}
if (vT != nil)
{
    orgWidth = vT.naturalSize.width;
    orgHeight = vT.naturalSize.height;
}

//check the orientation
CGAffineTransform txf = [vT preferredTransform];
if ((width == txf.tx && height == txf.ty)|(txf.tx == 0 && txf.ty == 0))
{
    //Landscape
}
else
{ 
    //Portrait
}