AVVideoComposition Failure

Как у меня. Чтобы использовать это.

Я объединяю несколько разных видеоклипов в AVMutableComposition и пытаюсь исправить их ориентацию, если это необходимо.

Вот мой код:

composition = [[AVMutableComposition alloc] init];
AVMutableVideoComposition *videoComposition = [AVMutableVideoComposition videoComposition];

AVMutableCompositionTrack *compositionVideoTrack = [composition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];
AVMutableCompositionTrack *compositionAudioTrack = [composition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];

CMTime nextClipStartTime = kCMTimeZero;

// orientation compensation vars
AVMutableVideoCompositionInstruction *inst = [AVMutableVideoCompositionInstruction videoCompositionInstruction];
NSMutableArray *compInst = [[NSMutableArray alloc] init];

// get view size
CGSize viewSize = playerView.frame.size;

// generate movie assets
for (NSString* moviePath in [currentBlam valueForKey:@"movies"]) {
    NSURL *movieURL = [NSURL fileURLWithPath:moviePath];
    AVURLAsset *movieAsset = [AVURLAsset URLAssetWithURL:movieURL options:nil];  

    // scale asset to fit screen

    CMTimeRange tr = CMTimeRangeFromTimeToTime(CMTimeMakeWithSeconds(0.0f, 1), CMTimeMakeWithSeconds(0.0f, 1));

    //    create video track
    AVAssetTrack *clipVideoTrack = [[movieAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
    //    create audio track
    AVAssetTrack *clipAudioTrack = [[movieAsset tracksWithMediaType:AVMediaTypeAudio] objectAtIndex:0];

    tr = CMTimeRangeFromTimeToTime(CMTimeMakeWithSeconds(0.0f, 1), CMTimeMakeWithSeconds(CMTimeGetSeconds([movieAsset duration]), 1));

    AVMutableVideoCompositionLayerInstruction *layerInst;
    layerInst = [AVMutableVideoCompositionLayerInstruction videoCompositionLayerInstructionWithAssetTrack:clipVideoTrack];

    int or = [self orientationForTrack:movieAsset];
    if (or==1) { 
        float rot = (0.0f);
        [layerInst setTransform:CGAffineTransformMakeRotation(rot) atTime:nextClipStartTime];
    } else if (or==2) { 
        float rot = (M_PI);
        [layerInst setTransform:CGAffineTransformMakeRotation(rot) atTime:nextClipStartTime];
    } else if (or==3) { 
        float rot = (M_PI*-0.5f);
        [layerInst setTransform:CGAffineTransformMakeRotation(rot) atTime:nextClipStartTime];
    } else if (or==4) { 
        float rot = (M_PI*0.5f);
        [layerInst setTransform:CGAffineTransformMakeRotation(rot) atTime:nextClipStartTime];
    }

    [layerInst setTransform:clipVideoTrack.preferredTransform atTime:nextClipStartTime];
    [compInst addObject:layerInst];

    //    insert video track
    [compositionVideoTrack insertTimeRange:tr 
                                   ofTrack:clipVideoTrack 
                                    atTime:nextClipStartTime 
                                     error:nil];
    //    insert audio track
    [compositionAudioTrack insertTimeRange:tr 
                                   ofTrack:clipAudioTrack 
                                    atTime:nextClipStartTime 
                                     error:nil];

    nextClipStartTime = CMTimeAdd(nextClipStartTime, tr.duration);
}

//set size and duration
composition.naturalSize = viewSize;
videoComposition.frameDuration = composition.duration;
videoComposition.renderSize = viewSize;
videoComposition.renderScale = 1.0f;

//apply instructions
inst.timeRange = CMTimeRangeMake(kCMTimeZero, composition.duration);
inst.layerInstructions = compInst;
videoComposition.instructions = [NSArray arrayWithObject:inst];

playerItem = [[AVPlayerItem alloc] initWithAsset:composition];
playerItem.videoComposition = videoComposition;
[playerItem addObserver:self forKeyPath:@"status" options:0 context:&ItemStatusContext];
[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(playerItemDidReachEnd:) 
                                             name:AVPlayerItemDidPlayToEndTimeNotification 
                                           object:playerItem];
player = [AVPlayer playerWithPlayerItem:playerItem];

[playerView setPlayer:player];

Когда я запускаю это и заполняю содержимым, ничего не отображается.

Раньше это работало без применения AVVideoComposition к проигрывателю. Фактически, комментирование playerItem.videoComposition = videoComposition позволяет ему работать, хотя и без корректировки ротации ресурсов.

На данный момент я знаю, что просто что-то не понимаю. Кто-нибудь может указать на что?


person Lane    schedule 17.08.2011    source источник
comment
Я свяжусь с вами и скажу, что знаю, что видео все еще можно воспроизводить. Звук воспроизводится, и ползунок очистки перемещается правильно. Я просто ничего не вижу в видео.   -  person Lane    schedule 17.08.2011
comment
Вы когда-нибудь в этом разбирались?   -  person scttnlsn    schedule 30.04.2013


Ответы (2)


Считаете ли вы, что, возможно, точка, вокруг которой вращается видео, не находится в центре, и видео выводится за пределы экрана? Это может быть совершенно неправильно, но это всего лишь моя первая мысль.

person CoderDan    schedule 01.12.2011

Я думаю, вы устанавливаете каждый кадр равным длине всего клипа:

videoComposition.frameDuration = композиция.duration;

person Graham    schedule 16.09.2013