首页 > 解决方案 > 如何向 AVPlayer 添加叠加层?

问题描述

我想在其中播放视频,AVPlayer但想在其中打开AVPlayer一个UIView,以便我可以在其上添加一个叠加层。

- (void)viewDidLoad
{
    [super viewDidLoad];


    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    [button setTitle:@"Play" forState:UIControlStateNormal];
    [button sizeToFit];
    button.center = CGPointMake(320/2, 60);
    [button addTarget:self action:@selector(buttonPressed:)
     forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];
}

-(void)buttonPressed:(UIButton *)button
{
    NSURL *urlVideoFile = [NSURL fileURLWithPath:@"https://www.rmp-streaming.com/media///bbb-360p.mp4"];
    NSAssert(urlVideoFile, @"Expected not nil video url");

    _playerViewController = [[AVPlayerViewController alloc] init];
    _playerViewController.player = [AVPlayer playerWithURL:urlVideoFile];
    _playerViewController.view.frame = self.view.bounds;
    _playerViewController.showsPlaybackControls = YES;
    [self.view addSubview:_playerViewController.view];
    self.view.autoresizesSubviews = YES;
}

它正在播放器中播放视频,但我想在其中打开视频,UIView以便可以在其上添加叠加层。

标签: iosobjective-cavplayer

解决方案


以你的 UIView 的 IBOutlet 为例

IBOutlet UIView *videoView;

并调用此方法

-(void)buttonPressed:(UIButton *)button
{
   NSURL *videoURL = [NSURL fileURLWithPath:filePath];
   AVPlayer *player = [AVPlayer playerWithURL:videoURL];
   AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];
   playerLayer.videoGravity = AVLayerVideoGravityResizeAspect;
   playerLayer.frame = videoView.bounds;
   [videoView.layer addSublayer:playerLayer];
   [player play];
   player.actionAtItemEnd = AVPlayerActionAtItemEndNone;

[[NSNotificationCenter defaultCenter] addObserver:self
                                          selector:@selector(playerItemDidReachEnd:)
                                             name:AVPlayerItemDidPlayToEndTimeNotification
                                           object:[player currentItem]];
}

- (void)playerItemDidReachEnd:(NSNotification *)notification
{
   AVPlayerItem *p = [notification object];
   [p seekToTime:kCMTimeZero]; 
}

推荐阅读