13

我正在开发一个视频应用程序,它一个接一个地播放多个视频。视频存储在 s 数组中AVPlayerItemAVQueuePlayer用这些初始化,AVPlayerItems它会自动播放该数组中的视频。

问题是当它更改为播放下一个视频时,它会卡住几分之一秒,或者在从一个视频转换到另一个视频时会产生一个混蛋。我想在视频更改时使用某种动画(例如淡入和淡出)来改善这种过渡。

我的代码AVQueuePlayer

AVQueuePlayer *mediaPlayer = [[AVQueuePlayer alloc] initWithItems:arrPlayerItems];
playerLayer=[AVPlayerLayer playerLayerWithPlayer:mediaPlayer];
playerLayer.frame=self.bounds;
playerLayer.videoGravity = AVLayerVideoGravityResizeAspect;
playerLayer.needsDisplayOnBoundsChange = NO;
[self.layer addSublayer:playerLayer];
self.layer.needsDisplayOnBoundsChange = YES;

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(itemPlayEnded:)
                                             name:AVPlayerItemDidPlayToEndTimeNotification
                                           object:[mediaPlayer currentItem]];

我尝试在过渡时创建一个新图层,并通过降低其不透明度并增加新图层的不透明度来为旧图层设置动画(以创建所需的淡入淡出效果),但它没有按预期工作。

自定义转换的代码:

-(void)TransitionInVideos {
    if (roundf(CMTimeGetSeconds(mediaPlayer.currentTime))==roundf(CMTimeGetSeconds(mediaPlayer.currentItem.duration))) {
        [self.layer addSublayer:playerLayerTmp];

        //Animation for the transition between videos
        [self performSelector:@selector(FadeIn) withObject:nil afterDelay:0.3];
        [self performSelector:@selector(FadeOut) withObject:nil afterDelay:0.3];
    }
}

-(void)FadeIn {
    CABasicAnimation* fadeAnim = [CABasicAnimation animationWithKeyPath:@"opacity"];
    fadeAnim.fromValue = [NSNumber numberWithFloat:1.0];
    fadeAnim.toValue = [NSNumber numberWithFloat:0.0];
    fadeAnim.duration = 2.0;
    [playerLayer addAnimation:fadeAnim forKey:@"opacity"];
    [self performSelector:@selector(HideLayer) withObject:nil afterDelay:2.0];
}

-(void)FadeOut {
    CABasicAnimation* fadeAnim = [CABasicAnimation animationWithKeyPath:@"opacity"];
    fadeAnim.fromValue = [NSNumber numberWithFloat:0.0];
    fadeAnim.toValue = [NSNumber numberWithFloat:1.0];
    fadeAnim.duration = 1.0;
    [playerLayerTmp addAnimation:fadeAnim forKey:@"opacity"];
    [self performSelector:@selector(ShowLayer) withObject:nil afterDelay:1.0];
}

-(void)HideLayer {
    playerLayer.opacity=0.0;
}

-(void)ShowLayer {
    playerLayerTmp.opacity=1.0;
}

如何将过渡应用于 中的视频AVQueuePlayer

4

3 回答 3

5

我们可以设置不透明度,AVMutableVideoCompositionLayerInstruction以便在导出时添加到视频中或AVPlayer作为 VideoComposition 属性,这将创建淡入和淡出效果。

 [layerInstruction setOpacityRampFromStartOpacity:1.0 toEndOpacity:0.0 timeRange:CMTimeRangeMake(CMTimeSubtract([mutableComposition duration], CMTimeMake(Transition_Time, 1)), [mutableComposition duration])];

 [layerInstruction setOpacityRampFromStartOpacity:0.0 toEndOpacity:1.0 timeRange:CMTimeRangeMake(kCMTimeZero, CMTimeMake(1, 1))];

这是产生效果的代码。


更完整的例子:

于 2013-11-14T05:44:52.873 回答
2

我们在我们的一个应用程序中遇到了完全相同的问题 - 不幸的是,我们不得不放弃标准播放器并使用此示例中的逻辑:

https://developer.apple.com/library/ios/samplecode/StitchedStreamPlayer/Listings/Classes_MyStreamingMovieViewController_m.html#//apple_ref/doc/uid/DTS40010092-Classes_MyStreamingMovieViewController_m-DontLinkElementID_8

希望有帮助。

于 2013-11-14T19:05:37.157 回答
1

通过使用两个单独的 AVPlayer 对象背靠背播放,我能够达到预期的效果。玩家正在使用不同的视图进行游戏。

这个想法是在第一个视频结束之前淡入第二个视频播放器的视图。

演示项目可以在这里找到:IHloopingVideoPlayerView

它一遍又一遍地循环播放相同的视频,但相同的想法可以应用于任意数量的视频。

于 2016-08-11T22:19:51.683 回答