一.来自 AVFoundation的 AVPlayer对象
特点:
1. AVPlayer
> 优点:
可以自定义UI, 进行控制
> 缺点:
单纯的播放, 没有控制UI, 而且如果要显示播放界面, 需要借助AVPlayerLayer, 添加图层到需要展示的图层上
步骤:
1.根据url播放源创建avplayer对象
NSURL *url = [NSURL URLWithString:@" http://v1.mukewang.com/57de8272-38a2-4cae-b734-ac55ab528aa8/L.mp4"];
_player = [AVPlayer playerWithURL:url];
2.根据player创建AVPlayerLayer对象
AVPlayerLayer *layer = [AVPlayerLayer playerLayerWithPlayer:self.player];
3.设置图层的大小
layer.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height);
4.添加到需要展示的视图上即可
[self.view.layer addSublayer:layer];
5.播放动作
[self.player play];
二.来自 MediaPlayer的 MPMoviePlayerController对象
特点:
2. MPMoviePlayerController
> 优点:
自带的播放控制UI, 不需要手动添加
> 缺点:
不能自定义UI
只能将此控制器视图添加到其他视图进行展示
此控制器不是视图控制器, 不能弹出
步骤:
1.根据url播放源创建MPMoviePlayerController对象
NSURL *remoteURL = [NSURL URLWithString:@" http://v1.mukewang.com/xxoo/L.mp4"];
_moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:remoteURL];
2. 设置播放视图的frame
self.moviePlayer.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height * 9 / 16);
3. 设置播放视图控制样式
self.moviePlayer.controlStyle = MPMovieControlStyleFullscreen;
[self.view addSubview:self.moviePlayer.view];
[self. moviePlayer play];
三.来自 MediaPlayer的 MPMoviePlayerViewController对象,基于MPMoviePlayerController的封装
特点:
3. MPMoviePlayerViewController
> 优点:
自带的播放控制UI, 不需要手动添加
此控制器是视图控制器, 可以弹出, 可以压栈
也可以手动调整视图大小, 添加到其他视图上
> 缺点:
不能自定义UI
步骤:
1.根据url播放源创建MPMoviePlayerViewController对象
NSURL *remoteURL = [NSURL URLWithString:@" http://v1.mukewang.com/xxoo/L.mp4"];
_playerVC = [[MPMoviePlayerViewController alloc] initWithContentURL:remoteURL];
2.压入控制器直接播放
[self presentViewController:self.playerVC animated:YES completion:^{
[self.playerVC.moviePlayer play];
}];
四.ios9.0以后使用来自 #import <AVFoundation/AVFoundation.h>
#import <AVKit/AVKit.h>的 AVPlayerViewController对象,基于 AVPlayer的封装
特点:
4. 针对于第2种和第3种实现方案, 在iOS9.0之后, 统一使用AVPlayerViewController
> 优点:
自带的播放控制UI, 不需要手动添加
此控制器是视图控制器, 可以弹出, 可以压栈
也可以手动调整视图大小, 添加到其他视图上
> 缺点:
不能自定义UI
步骤:
-(AVPlayerViewController *)playerVC
{
if (!_playerVC) {
//1.创建AVPlayerViewController对象
_playerVC = [[AVPlayerViewController alloc] init];
//2.根据URL创建AVPlayer
NSURL *remoteURL = [NSURL URLWithString:@" http://v1.mukewang.com/57de8272-38a2-4cae-b734-ac55ab528aa8/L.mp4"];
AVPlayer *player = [AVPlayer playerWithURL:remoteURL];
//3.指定控制器的播放器
_playerVC.player = player;
//3.1设置属性,允许画中画
_playerVC.allowsPictureInPicturePlayback = YES;
}
return _playerVC;
}
//5.如果已经存在播放控制器了就不要再弹出player了,不然会报错
if(self.presentedViewController) return;
//4.直接弹出;
[self presentViewController:self.playerVC animated:YES completion:nil];
//4.1或展示控制器,并设置播放
[self presentViewController:self.playerVC animated:YES completion:^{
[self.playerVC.player play];
}];