iOS ~ 登录注册页:背景设置为视频样式AVPlayer
视频播放:AVPlayerItem
、AVPlayerLayer
、AVPlayer
原理:在一个UIViewController上,先将视频的AVPlayer等等图层加载上,在最上层覆盖一些其他的控件(比如:输入框、按钮等等)
退出视频播放页面时,注意一定要进行 AVPlayer
①停止
并②释放
操作:1.清除KVO;
2.暂停;
3.清空缓存区;
4.从父视图移除播放器;
5.移除播放器的全部视图;
6.把播放器置为nil。
零0️⃣、相关链接🔗:
1、iOS开发视频背景及播放闪屏处理,卡顿处理
2、iOS实现简单登录页背景 为视频动画
3、iOS 获取本地视频播放路径
4、iOS AVPlayer使用总结
5、iOS AVPlayer 使用总结
6、AVPlayer详解系列(一)参数设置
导入
/** 登录页 视频背景 */
#import
@interface LoginViewController ()
/**
基本信息:使用AVPlayer需要了解的常用类:
· AVAsset:一个用于获取多媒体信息的抽象类,但不能直接使用
· AVURLAsset:AVAsset的子类,可以根据一个URL路径创建一个包含媒体信息的AVURLAsset对象
· AVPlayerItem:一个媒体资源管理对象,用于管理视频的基本信息和状态,一个AVPlayerItem对应一个视频资源
· AVPlayer:负责视频播放、暂停、时间控制等操作
· AVPlayerLayer:负责显示视频的图层,如果不设置此属性,视频就只有声音没有图像
*/
/** 设置: 登录页 视屏背景 */
@property (nonatomic, strong) UIView *backView;
@property (nonatomic, strong) AVPlayer *avPlayer;
@property (nonatomic, strong) AVPlayerItem *playerItem;
@property (nonatomic, strong) AVPlayerLayer *playerLayer;
@property (nonatomic, strong) UIImageView *backgroundImg; // 视频开始播放前的空白屏问题
@end
1、实现
这里的图片要直接使用 Asset.xcassets
文件中的图片,(其他文件夹
中的图片会比直接使用Asset.xcassets
的图片慢一点,导致会有白屏问题
(这个问题就是会显示AVPlayer的背景层的颜色))
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.navigationBar.hidden = NO;
[self.view addSubview:self.backView];
// 设置 视频背景
[self setting_AVPlayer];
// 防止
_backgroundImg = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)];
self.backgroundImg.image = [UIImage imageNamed:@"start_Login_BackVideo_icon"]; // 这里的图片要直接使用 Asset.xcassets 文件中的图片,(其他文件夹中的图片会比直接使用Asset.xcassets的图片慢一点)
self.backgroundImg.contentMode = UIViewContentModeScaleAspectFill;
[self.view addSubview:self.backgroundImg];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
self.backgroundImg.hidden = YES;
});
// `self.loginView`(各种输入框、按钮等等控件的父视图)是在最上面
[self.view addSubview:self.loginView];
}
2、因为,从前台返回到后台时,会暂停视频,所以这里需要通知NSNotificationCenter
,当,从后台返回前台时,播放视频:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
// (从后台 到 前台时)视频播放
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillEnterForeground_StartVideoBackground) name:@"willEnterForeground_LoginPage_StartPlayVideoBackground" object:nil];
// 判断 self.backView.layer 上是否有 self.playerLayer,没有就创建
if (![[self.backView.layer sublayers] containsObject:self.playerLayer]) {
// 设置 视频背景
[self setting_AVPlayer];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
self.backgroundImg.hidden = YES;
});
}
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"willEnterForeground_LoginPage_StartPlayVideoBackground" object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:AVPlayerItemDidPlayToEndTimeNotification object:nil];
[self.avPlayer pause]; // 播放暂停
// [self.backView removeFromSuperview]; // 去除视频层
}
// 完全退出该页面后,在删除播放器层
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
self.backgroundImg.hidden = NO;
[self.playerLayer removeFromSuperlayer];
// 替换PlayerItem为nil
[self.avPlayer replaceCurrentItemWithPlayerItem:nil];
// 把player置为nil
self.avPlayer = nil;
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
// 是否允许右滑返回:YES 启动侧滑,NO 禁止侧滑
[self.navigationController.interactivePopGestureRecognizer setEnabled:NO];
}
- (void)applicationWillEnterForeground_StartVideoBackground {
if (self.avPlayer) {
[self.avPlayer pause];
[self.avPlayer play]; // 返回前天后,继续播放
}
}
- (UIView *)backView {
if (!_backView) {
_backView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight)];
_backView.backgroundColor = UIColor.redColor;
}
return _backView;
}
3、设置 AVPlayerItem
、AVPlayerLayer
、AVPlayer
#pragma mark -- 设置 登录页 视频背景
- (void)setting_AVPlayer {
// 本地视频路径:
NSString *localFilePath = [[NSBundle mainBundle] pathForResource:@"Login_BackVideo" ofType:@"mp4"];
NSURL *localVideoUrl = [NSURL fileURLWithPath:localFilePath];
// 网络视频路径
// NSString *urlStr = @"https://www.XXXXXXXX.mp4";
// NSURL *webUel = [NSURL URLWithString:urlStr];
// playerItem
_playerItem = [[AVPlayerItem alloc] initWithURL:localVideoUrl];
_avPlayer = [[AVPlayer alloc] initWithPlayerItem:self.playerItem];
_avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone; // 播放完成之后,的操作(播放下一个、暂停播放、什么都不做)
// 显示层
AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
playerLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
playerLayer.backgroundColor = [UIColor clearColor].CGColor;
// playerLayer.backgroundColor = RGBA(9, 9, 9, 1).CGColor;
// playerLayer.frame = self.backView.frame;
playerLayer.frame = self.view.bounds;
self.playerLayer = playerLayer;
[self.backView.layer addSublayer:self.playerLayer];
/**
// 监听视频状态
[self.playerItem addObserver:self forKeyPath:@"status" options:NSKeyValueObservingOptionNew context:@"item.status"];
// // 监听缓冲进度
[self.playerItem addObserver:self forKeyPath:@"loadedTimeRanges" options:NSKeyValueObservingOptionNew context:@"item.loaded"];
// 获取播放进度
[self.avPlayer addPeriodicTimeObserverForInterval:CMTimeMake(1, 1) queue:dispatch_get_main_queue() usingBlock:^(CMTime time) {
// CMTimeGetSeconds(time) // 已经播放的秒数
NSLog(@"已经播放的秒数 = %d", time.timescale);
}];
// 接收播放完成通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handlePlayEnd) name:AVPlayerItemDidPlayToEndTimeNotification object:nil];
*/
self.avPlayer.volume = 0.0; // 音量
[self.avPlayer play];
// [self showLoginView];
// 视频播发完毕,发通知
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemDidPlayToEndTimeNotification:) name:AVPlayerItemDidPlayToEndTimeNotification
object:nil];
// CMTime time = [self.avPlayer currentTime];
// NSLog(@"当前视频播放的第几秒 = %d", time.timescale);
// [[NSNotificationCenter defaultCenter] removeObserver:self name:AVPlayerItemDidPlayToEndTimeNotification object:nil];
// [self.avplayer pause]; // 播放暂停
}
#pragma mark - Notifications
- (void)playerItemDidPlayToEndTimeNotification:(NSNotification *)notification {
[self.avPlayer seekToTime:kCMTimeZero]; // 视频播放完毕,设置从头继续播放
}
4、在AppDelegate.m中设置,视频进入后台到前台视频暂停的处理方法(即,通知NSNotificationCenter
):
- (void)applicationWillEnterForeground:(UIApplication *)application {
// 程序进入前台
NSLog(@"😆😆程序进入前台");
// 进入前台时,播放登录页背景视频
[[NSNotificationCenter defaultCenter] postNotificationName:@"willEnterForeground_LoginPage_StartPlayVideoBackground" object:nil];
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
// 程序进入后台
NSLog(@"程序进入后台");
}
共有 0 条评论