1

我制作了一个 AVQueuePlayer 并添加了一些视频项目。当我运行应用程序时,视频的声音播放但视频没有显示。我知道视频没有显示的原因,那是因为我不知道如何在视图中添加 AVQueuePlayer。请帮我

NSString *firstVideoPath = [[NSBundle mainBundle] 
                                      pathForResource:@"3" ofType:@"m4v"];
NSString *secondVideoPath = [[NSBundle mainBundle] 
                                    pathForResource:@"2" ofType:@"m4v"];
NSString *thirdVideoPath = [[NSBundle mainBundle] 
                                    pathForResource:@"3" ofType:@"m4v"];


AVPlayerItem *firstVideoItem = [AVPlayerItem playerItemWithURL:


[NSURL fileURLWithPath:firstVideoPath]];
    AVPlayerItem *secondVideoItem = [AVPlayerItem playerItemWithURL:

                                                [NSURL fileURLWithPath:secondVideoPath]];
    AVPlayerItem *thirdVideoItem = [AVPlayerItem playerItemWithURL:
                                                [NSURL fileURLWithPath:thirdVideoPath]];

    self.queuePlayer = [AVQueuePlayer queuePlayerWithItems:
                        [NSArray arrayWithObjects:firstVideoItem,
                         secondVideoItem,thirdVideoItem,nil]];
    [self.playerView setPlayer:self.queuePlayer];

    [self.queuePlayer play];   
4

1 回答 1

2

首先,掌握所有路径:

NSString *firstVideoPath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"m4v"];
NSString *secondVideoPath = [[NSBundle mainBundle] pathForResource:@"demo" ofType:@"mp4"];
NSString *thirdVideoPath = [[NSBundle mainBundle] pathForResource:@"3" ofType:@"m4v"];

AVPlayerItem *firstVideoItem = [AVPlayerItem playerItemWithURL:[NSURL fileURLWithPath:firstVideoPath]];
AVPlayerItem *secondVideoItem = [AVPlayerItem playerItemWithURL:[NSURL fileURLWithPath:secondVideoPath]];
AVPlayerItem *thirdVideoItem = [AVPlayerItem playerItemWithURL:[NSURL fileURLWithPath:thirdVideoPath]];

初始化 AVQueuePlayer:

AVQueuePlayer *queuePlayer = [AVQueuePlayer queuePlayerWithItems:@[firstVideoItem, secondVideoItem,thirdVideoItem]];

最后使用图层将所有电影显示为播放列表。

AVPlayerLayer *layer = [AVPlayerLayer layer];

[layer setPlayer:queuePlayer];
[layer setFrame:CGRectMake(10, 10, 300, 200)];
[layer setBackgroundColor:[UIColor redColor].CGColor];
[layer setVideoGravity:AVLayerVideoGravityResizeAspectFill];

[self.view.layer addSublayer:layer];

[queuePlayer play];

不要忘记添加框架:

#import <QuartzCore/QuartzCore.h>
#import "AVFoundation/AVFoundation.h"
于 2013-05-21T19:25:41.243 回答