iOS 14 画中画

背景:

画中画(PictureInPicture)在iOS9就已经推出了,不过之前都只能在iPad使用,iPhone要使用画中画就得更新到iOS14才能使用。

基本使用:

1.如果对播放器要求不大的可以直接使用AVPlayerViewController,自身就提供画中画功能可直接使用:

allowsPictureInPicturePlayback = YES 即可,在iOS14系统上回到桌面既可以展示
代码块:

    AVPlayerViewController *avplayerVC = [[AVPlayerViewController alloc] init];
    avplayerVC.view.backgroundColor = [UIColor whiteColor];
    avplayerVC.delegate = self;
    avplayerVC.allowsPictureInPicturePlayback = YES;
    avplayerVC.view.frame = CGRectMake(0, 80, self.view.frame.size.width, self.view.frame.size.height-80);
    [self.view addSubview:avplayerVC.view];
    [self addChildViewController:avplayerVC];
    
    NSString *mp4Url = @"https://vd2.bdstatic.com/mda-kjkpvdnzxngm6s5s/sc/cae_h264_clips/1603271118/mda-kjkpvdnzxngm6s5s.mp4";
    AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithURL:[NSURL URLWithString:mp4Url]];
    self.playerItem = playerItem;

    AVPlayer *player = [[AVPlayer alloc] initWithPlayerItem:playerItem];
    avplayerVC.player = player;
    [player play];
    self.player = player;
    [playerItem addObserver:self forKeyPath:@"status"options:NSKeyValueObservingOptionNew context:nil];

通知监听:

- (void)observeValueForKeyPath:(NSString*)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void*)context{
    if([object isKindOfClass:[AVPlayerItem class]]) {
        if([keyPath isEqualToString:@"status"]) {
            switch(self.playerItem.status) {
                case AVPlayerItemStatusReadyToPlay://推荐将视频播放放这里
                    [self.player play];
                    NSLog(@"AVPlayerItemStatusReadyToPlay");
                    break;
                case AVPlayerItemStatusUnknown:
                    NSLog(@"AVPlayerItemStatusUnknown");
                    break;
                case AVPlayerItemStatusFailed:
                    NSLog(@"StatusFailed---- %@", self.playerItem.error.description);
                    NSLog(@"AVPlayerItemStatusFailed");
                    break;
                default:
                    break;
             }
        }
    }
}

2.自定义的播放器(继承AVPlayerLayer)要开启画中画那就使用AVPictureInPictureController,只需要以下3步即可实现:

2.1使用Xcode12打开工程,首先得开启后台模式:
image2020-10-22 14_32_35.png
2.2 设置后台模式权限:
image2020-10-22 14_33_17.png
2.2 设置自定义playerLayer:(可以抽离到自定义View)
image2020-10-22 14_36_49.png
2.3 开启/关闭画中画:
image2020-10-22 14_38_5.png
2.4设置代理
image2020-10-22 14_42_22.png

3 注意使用事项:

1.AVPlayer播放类型:支持播放直播流:支持.m3u8 不支持 .flv 格式 , 视频数据流: MP4,MOV,M4V,3GP,AVI等。

   日志: Error Domain=AVFoundationErrorDomain Code=-11850 "Operation Stopped" UserInfo={NSLocalizedFailureReason=The server is not correctly configured.,
   NSLocalizedDescription=Operation Stopped, NSUnderlyingError=0x60000193aa60 {Error Domain=NSOSStatusErrorDomain Code=-12939 "(null)"}}

2.pictureInPictureController 销毁时机:随外部VC一起销毁,同时需要视频暂停播放。若App内部全局悬浮、需要设置全局画中画控制器持有

  1. 如果创建AVPictureInPictureController并同时开启画中画功能,有可能会失效,出现这种情况延迟开启画中画功能即可

4.已有画中画的情况下开启新的画中画,需要等完全关闭完再开启新的,防止有未知的错误出现,因为关闭画中画是有过程的

5.AVPlayerViewController 设置完毕,整个app默认全局展示。关闭x 悬浮框小时并视频停止。

代码链接 https://gitee.com/Holink521/avfloatview

你可能感兴趣的:(iOS 14 画中画)