5

我使用 [此处][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 的正确大小

4

2 回答 2

2

在这里找到了描述如何使用 AVfoundation 介绍编辑和操作视频的详细教程

如果它们是横向的,我们可以使用我们提供的 naturalSize 属性,但如果它们是纵向的,我们必须翻转 naturalSize 以便宽度现在是高度,反之亦然

于 2012-07-05T10:47:58.177 回答
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
} 
于 2013-05-22T19:42:39.860 回答