LVCUGCLivePlayerController.m
43.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
//
// LVCUGCLivePlayerController.m
// LiveVideoCloud
//
// Created by cnliveJunBo on 17/3/17.
// Copyright © 2017年 cnlive. All rights reserved.
//
#import "LVCUGCLivePlayerController.h"
#import <CNLivePlayerSDK/CNLiveWebcastManager.h>
#import "LVCUGCPlayerLoadingView.h"
#import "LVCUGCBackgroundView.h"
#import "UIImage+LVCVagueImage.h"
#import "LiveBaseView.h"
#import "MineLiveController.h"
#import "LVCUGCLiveListController.h"
@interface LVCUGCLivePlayerController () {
float _oneY;
float _SecondY;
float _ThirdY;
UIView *_tempView;
LVCUGCPlayerLoadingView *_tempImageView;
UIPanGestureRecognizer *_pan;
LVCUGCPlayerLoadingView *_firstLoadView;
LVCUGCPlayerLoadingView *_secondLoadView;
LVCUGCPlayerLoadingView *_thirdLoadView;
UIImage *_blurImage;
NSTimer *_currentTimer;// 更新当前播放时间
LVCUGCLivePlayerModel *_bgModel;
}
@property (nonatomic, strong) UIView *viewOne;
@property (nonatomic, strong) UIView *viewSecond;
@property (nonatomic, strong) UIView *viewThird;
@property (nonatomic ,strong) LiveBaseView * _Nullable liveBaseView;
@property (nonatomic, strong) CNLiveMoviePlayerController *player; // 播放器
@property (nonatomic, strong) LVCUGCBackgroundView *bgView; // 背景视图
@property (nonatomic, strong) UIButton *vodPlayerQuitBtn;
@property (nonatomic, strong) UIView *bottomView; // 下方功能条
@property (nonatomic, strong) UIButton *playPauseBtn; //播放暂停按钮
@property (nonatomic, strong) UILabel *currentTimeLabel; //当前时间显示
@property (nonatomic, strong) UILabel *durationLabel; //总时间
@property (nonatomic, strong) UISlider *timeSlide; //滑动
@property (nonatomic, strong) UIProgressView *bufferProgress; //缓冲
@end
@implementation LVCUGCLivePlayerController
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
self.navigationController.navigationBar.hidden = YES;
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
self.navigationController.navigationBar.hidden = NO;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
NSString *path = [[NSBundle mainBundle] pathForResource:@"UGCLoading" ofType:@"jpeg"];
UIImage *image = [UIImage imageWithContentsOfFile:path];
_blurImage = [UIImage boxblurImage:image withBlurNumber:0.6];
[self.view addSubview:self.viewOne];
[self.view addSubview:self.viewSecond];
[self.view addSubview:self.viewThird];
if ([_model.activityStatus isEqualToString:@"1"]) {
[self addLiveBaseViewWithChannelId:_model.channelId];
}
_bgModel = _model;
[self.view addSubview:self.bgView];
if ([_model.activityStatus isEqualToString:@"0"]) {
_bgView.anchorStatus = 4;
_bgView.model = _model;
} else if ([_model.activityStatus isEqualToString:@"4"]) {
_bgView.anchorStatus = 5;
_bgView.model = _model;
} else if ([_model.activityStatus isEqualToString:@"-2"]) {
_bgView.anchorStatus = 6;
_bgView.model = _model;
}
}
- (void)addLiveBaseViewWithChannelId:(NSString *)channelId
{
if (_vodPlayerQuitBtn) {
[_vodPlayerQuitBtn removeFromSuperview];
}
[_liveBaseView removeFromSuperview];
[_viewSecond addSubview:self.liveBaseView ];
self.liveBaseView.roomId = channelId;
[_liveBaseView addGestureRecognizer:_pan];
}
- (void)quitBtnClick { // 退出
[_player stop];
// if (self.navigationController.viewControllers.count > 2) {//判断
// [self.navigationController popViewControllerAnimated:YES];
// }
for (UIViewController *controller in self.navigationController.viewControllers) {
if ([controller isKindOfClass:[MineLiveController class]]) {
MineLiveController *revise =(MineLiveController *)controller;
[self.navigationController popToViewController:revise animated:YES];
}
else if ([controller isKindOfClass:[LVCUGCLiveListController class]]) {
LVCUGCLiveListController *revise =(LVCUGCLiveListController *)controller;
[self.navigationController popToViewController:revise animated:YES];
}
}
}
- (void)setModel:(LVCUGCLivePlayerModel *)model {
if (_model != model) {
_model = model;
}
_pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGesture:)];
[self installMovieNotificationObservers];
if ([model.activityStatus isEqualToString:@"1"]) {
_player = [[CNLiveMoviePlayerController alloc] initLivePlayWithChannelId:model.channelId anchorStatus:YES authSuccess:^{
_player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
_player.view.frame = self.view.bounds;
_player.shouldAutoplay = YES;
[_player prepareToPlay];
[self.viewSecond addSubview:_player.view];
[self.viewSecond sendSubviewToBack:_player.view];
} authFailed:^(NSDictionary *errorInfo) {
NSLog(@"初始化直播播放器失败:%@", errorInfo);
} getAnchorStatusResult:^(BOOL result) {
NSLog(@"-------------获取主播状态%d", result ? YES : NO);
//如果获取主播状态失败再重新获取
if (!result) {
[self anchorStatusConnectFailed];
}
}];
} else if ([model.activityStatus isEqualToString:@"2"]) {
//用来更新视频当前播放时间
_currentTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(timeChange) userInfo:nil repeats:YES];
_player = [[CNLiveMoviePlayerController alloc] initVodPlayWithVId:model.activityId
authSuccess:^{
_player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
_player.view.frame = self.view.bounds;
_player.shouldAutoplay = YES;
[_player prepareToPlay];
[self.viewSecond addSubview:_player.view];
[self.viewSecond sendSubviewToBack:_player.view];
[_player.view addGestureRecognizer:_pan];
[_player.view addSubview:self.bottomView];
} authFailed:^(NSDictionary *errorInfo) {
NSLog(@"初始化点播播放器失败%@", errorInfo);
}];
}
}
#pragma mark - UIPanGestureRecognizer !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)panGesture:(UIPanGestureRecognizer *)recognizer {
CGPoint t = [recognizer translationInView:self.viewSecond];
NSLog(@"移动距离>>>>>>>>>>>>>>%f",t.y);
if (((_index == 0) && (t.y > 0)) || ((_index == (_playArray.count - 1)) && (t.y < 0))) {
return;
}
_viewOne.frame = CGRectMake(0, _oneY + t.y, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewSecond.frame = CGRectMake(0, _SecondY + t.y, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewThird.frame = CGRectMake(0, _ThirdY + t.y, SCREEN_WIDTH, SCREEN_HEIGHT);
switch (recognizer.state) {
case UIGestureRecognizerStateBegan:
case UIGestureRecognizerStateChanged:
{
}
break;
case UIGestureRecognizerStateEnded:
case UIGestureRecognizerStateFailed:
case UIGestureRecognizerStateCancelled:
{
if (t.y > 100) {
[UIView animateWithDuration:0.2 animations:^{
_viewOne.frame = CGRectMake(0, _oneY + SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewSecond.frame = CGRectMake(0, _SecondY + SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewThird.frame = CGRectMake(0, _ThirdY + SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
} completion:^(BOOL finished) {
_index = _index - 1;
if (_vodPlayerQuitBtn) {
[_vodPlayerQuitBtn removeFromSuperview];
}
[_bottomView removeFromSuperview];
[_currentTimer invalidate]; //时间重置
[_player.view removeFromSuperview];
[_player stop];
_player = nil;
//加载图调整.
if (_index > 0) {
[_thirdLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_playArray[_index - 1].coverImgUrl] placeholderImage:_blurImage];
}
_tempImageView = _firstLoadView;
_firstLoadView = _thirdLoadView;
_thirdLoadView = _secondLoadView;
_secondLoadView = _tempImageView;
// 视图调整
_viewThird.frame = CGRectMake(0, -SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
_tempView = _viewOne;
_viewOne = _viewThird;
_viewThird = _viewSecond;
_viewSecond = _tempView;
// 停止后的视图,拿到自己的加载图来显示
[self adjustViewWithLoadView];
//往下滑 播放上一个
if (_index >= 0) {
if ([_playArray[_index].activityStatus isEqualToString:@"2"]) {
[_liveBaseView removeFromSuperview];
[_viewSecond addSubview:self.vodPlayerQuitBtn];
_currentTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(timeChange) userInfo:nil repeats:YES];
_bgModel = _playArray[_index];
_player = [[CNLiveMoviePlayerController alloc] initVodPlayWithVId:_playArray[_index].activityId
authSuccess:^{
_player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
_player.view.frame = self.view.bounds;
_player.shouldAutoplay = YES;
[_player prepareToPlay];
[_viewSecond addSubview:_player.view];
[_viewSecond sendSubviewToBack:_player.view];
[_player.view addGestureRecognizer:_pan];
[_player.view addSubview:self.bottomView];
} authFailed:^(NSDictionary *errorInfo) {
NSLog(@"初始化点播播放器失败%@", errorInfo);
}];
} else if ([_playArray[_index].activityStatus isEqualToString:@"1"]) {
[self addLiveBaseViewWithChannelId:_playArray[_index].channelId];
_player = [[CNLiveMoviePlayerController alloc] initLivePlayWithChannelId:_playArray[_index].channelId anchorStatus:YES authSuccess:^{
_player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
_player.view.frame = self.view.bounds;
_player.shouldAutoplay = YES;
[_player prepareToPlay];
[_viewSecond addSubview:_player.view];
[_viewSecond sendSubviewToBack:_player.view];
} authFailed:^(NSDictionary *errorInfo) {
NSLog(@"初始化直播播放器失败:%@", errorInfo);
} getAnchorStatusResult:^(BOOL result) {
NSLog(@"-------------获取主播状态%d", result ? YES : NO);
//如果获取主播状态失败再重新获取
if (!result) {
[self anchorStatusConnectFailed];
}
}];
} else if ([_playArray[_index].activityStatus isEqualToString:@"0"]) {
_bgView.anchorStatus = 4;
_bgView.model = _playArray[_index];
} else if ([_playArray[_index].activityStatus isEqualToString:@"4"]) {
_bgView.anchorStatus = 5;
_bgView.model = _playArray[_index];
} else if ([_playArray[_index].activityStatus isEqualToString:@"-2"]) {
_bgView.anchorStatus = 6;
_bgView.model = _playArray[_index];
}
}
_oneY = _viewOne.frame.origin.y;
_SecondY = _viewSecond.frame.origin.y;
_ThirdY = _viewThird.frame.origin.y;
}];
} else if (t.y < -100) {
[UIView animateWithDuration:0.2 animations:^{
_viewOne.frame = CGRectMake(0, _oneY - SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewSecond.frame = CGRectMake(0, _SecondY - SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewThird.frame = CGRectMake(0, _ThirdY - SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
} completion:^(BOOL finished) {
_index = _index + 1;
if (_vodPlayerQuitBtn) {
[_vodPlayerQuitBtn removeFromSuperview];
}
[_bottomView removeFromSuperview];
[_currentTimer invalidate]; //时间重置
[_player.view removeFromSuperview];
[_player stop];
_player = nil;
//加载图调整
if (_index < _playArray.count - 1) {
[_firstLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_playArray[_index + 1].coverImgUrl] placeholderImage:_blurImage];
}
_tempImageView = _firstLoadView;
_firstLoadView = _secondLoadView;
_secondLoadView = _thirdLoadView;
_thirdLoadView = _tempImageView;
// 视图调整
_viewOne.frame = CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
_tempView = _viewOne;
_viewOne = _viewSecond;
_viewSecond = _viewThird;
_viewThird = _tempView;
// 停止后的视图,拿到自己的加载图来显示
[self adjustViewWithLoadView];
//往上滑 播放下一个
if (_index < _playArray.count) { // 判越界
if ([_playArray[_index].activityStatus isEqualToString:@"2"]) {
[_liveBaseView removeFromSuperview];
[_viewSecond addSubview:self.vodPlayerQuitBtn];
_currentTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(timeChange) userInfo:nil repeats:YES];
_player = [[CNLiveMoviePlayerController alloc] initVodPlayWithVId:_playArray[_index].activityId
authSuccess:^{
_player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
_player.view.frame = self.view.bounds;
_player.shouldAutoplay = YES;
[_player prepareToPlay];
[_viewSecond addSubview:_player.view];
[_viewSecond sendSubviewToBack:_player.view];
[_player.view addGestureRecognizer:_pan];
[_player.view addSubview:self.bottomView];
} authFailed:^(NSDictionary *errorInfo) {
NSLog(@"初始化点播播放器失败%@", errorInfo);
}];
} else if ([_playArray[_index].activityStatus isEqualToString:@"1"]) {
[self addLiveBaseViewWithChannelId:_playArray[_index].channelId];
_bgModel = _playArray[_index];
_player = [[CNLiveMoviePlayerController alloc] initLivePlayWithChannelId:_playArray[_index].channelId anchorStatus:YES authSuccess:^{
_player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
_player.view.frame = self.view.bounds;
_player.shouldAutoplay = YES;
[_player prepareToPlay];
[_viewSecond addSubview:_player.view];
[_viewSecond sendSubviewToBack:_player.view];
} authFailed:^(NSDictionary *errorInfo) {
NSLog(@"初始化直播播放器失败:%@", errorInfo);
} getAnchorStatusResult:^(BOOL result) {
NSLog(@"-------------获取主播状态%d", result ? YES : NO);
//如果获取主播状态失败再重新获取
if (!result) {
[self anchorStatusConnectFailed];
}
}];
} else if ([_playArray[_index].activityStatus isEqualToString:@"0"]) {
_bgView.anchorStatus = 4;
_bgView.model = _playArray[_index];
} else if ([_playArray[_index].activityStatus isEqualToString:@"4"]) {
_bgView.anchorStatus = 5;
_bgView.model = _playArray[_index];
} else if ([_playArray[_index].activityStatus isEqualToString:@"-2"]) {
_bgView.anchorStatus = 6;
_bgView.model = _playArray[_index];
}
}
_oneY = _viewOne.frame.origin.y;
_SecondY = _viewSecond.frame.origin.y;
_ThirdY = _viewThird.frame.origin.y;
}];
} else {
[UIView animateWithDuration:0.2 animations:^{
_viewOne.frame = CGRectMake(0, _oneY, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewSecond.frame = CGRectMake(0, _SecondY, SCREEN_WIDTH, SCREEN_HEIGHT);
_viewThird.frame = CGRectMake(0, _ThirdY, SCREEN_WIDTH, SCREEN_HEIGHT);
} completion:^(BOOL finished) {
_oneY = _viewOne.frame.origin.y;
_SecondY = _viewSecond.frame.origin.y;
_ThirdY = _viewThird.frame.origin.y;
}];
}
}
break;
default:
break;
}
}
- (void)adjustViewWithLoadView {
[_firstLoadView removeFromSuperview];
[_secondLoadView removeFromSuperview];
[_thirdLoadView removeFromSuperview];
[_viewOne addSubview:_firstLoadView];
[_viewSecond addSubview:_secondLoadView];
[_viewThird addSubview:_thirdLoadView];
}
#pragma mark - Action !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-(void)installMovieNotificationObservers //添加视频播放通知监听
{
//视频加载状态改变
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(loadStateDidChange:)
name:MPMoviePlayerLoadStateDidChangeNotification
object:nil];
//视频播放错误及结束原因
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:nil];
//视频缓冲至可播放状态
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(mediaIsPreparedToPlayDidChange:)
name:MPMediaPlaybackIsPreparedToPlayDidChangeNotification
object:nil];
//视频播放状态改变
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackStateDidChange:)
name:MPMoviePlayerPlaybackStateDidChangeNotification
object:nil];
//获取主播状态通知(点播和普通播放不需要注册该通知)
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(anchorStatusChanged:)
name:CNLiveAnchorStatusChangedNotification
object:nil];
}
- (void)toast:(NSString*)message { // 提示框
UIAlertView *toast = [[UIAlertView alloc] initWithTitle:nil
message:message
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:nil, nil];
[toast show];
double duration = 2.5;
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(duration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[toast dismissWithClickedButtonIndex:0 animated:NO];
});
}
#pragma mark - 通知 Action !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)loadStateDidChange:(NSNotification *)notification //视频加载状态改变
{
if (_player) {
MPMovieLoadState loadState = _player.loadState;
if ((loadState & MPMovieLoadStatePlaythroughOK) != 0) {
NSLog(@"loadStateDidChange: MPMovieLoadStatePlaythroughOK: %d\n", (int)loadState);
} else if ((loadState & MPMovieLoadStateStalled) != 0) {
NSLog(@"loadStateDidChange: MPMovieLoadStateStalled: %d\n", (int)loadState);
} else {
NSLog(@"loadStateDidChange: ???: %d\n", (int)loadState);
}
}
}
- (void)moviePlayBackDidFinish:(NSNotification *)notification //视频播放错误及结束原因
{
if (_player) {
int reason = [[[notification userInfo] valueForKey:MPMoviePlayerPlaybackDidFinishReasonUserInfoKey] intValue];
switch (reason)
{
//1)播放完毕。
case MPMovieFinishReasonPlaybackEnded:
_bgView.anchorStatus = 3;
_bgView.model = _bgModel;
[_currentTimer invalidate];
NSLog(@"playbackStateDidChange: MPMovieFinishReasonPlaybackEnded: %d\n", reason);
break;
//2)播放出现错误后结束播放
case MPMovieFinishReasonUserExited:
NSLog(@"playbackStateDidChange: MPMovieFinishReasonUserExited: %d\n", reason);
[self toast:@""];
break;
//3)用户点击done完成播放
case MPMovieFinishReasonPlaybackError:
NSLog(@"playbackStateDidChange: MPMovieFinishReasonPlaybackError: %d\n", reason);
//[self toast:@"MPMovieFinishReasonPlaybackError"];
break;
default:
NSLog(@"playbackPlayBackDidFinish: ???: %d\n", reason);
break;
}
}
}
- (void)mediaIsPreparedToPlayDidChange:(NSNotification *)notification //视频缓冲至可播放状态
{
if (_player) {
NSLog(@"isPreparedToPlay");
[self removeSecondLoadingView];
}
}
- (void)removeSecondLoadingView {
if (_viewSecond.subviews.count>0) {
for (UIView *subViews in _viewSecond.subviews) {
if ([subViews isKindOfClass:[LVCUGCPlayerLoadingView class]]) {
[subViews removeFromSuperview];
}
}
}
}
- (void)moviePlayBackStateDidChange:(NSNotification *)notification //视频播放状态改变
{
if (_player) {
switch (_player.playbackState) {
case MPMoviePlaybackStateStopped: {
if (_playPauseBtn) {
[self changePlayBtnStatus:NO];
}
// **
NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateStopped");
break;
}
case MPMoviePlaybackStatePlaying: {
if (_playPauseBtn) {
[self changePlayBtnStatus:YES];
}
NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStatePlaying");
break;
}
case MPMoviePlaybackStatePaused:
if (_playPauseBtn) {
[self changePlayBtnStatus:NO];
}
NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStatePaused");
break;
case MPMoviePlaybackStateInterrupted:
if (_playPauseBtn) {
[self changePlayBtnStatus:NO];
}
NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateInterrupted");
break;
case MPMoviePlaybackStateSeekingForward:
if (_playPauseBtn) {
[self changePlayBtnStatus:NO];
}
NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateSeekingForward");
break;
case MPMoviePlaybackStateSeekingBackward:
if (_playPauseBtn) {
[self changePlayBtnStatus:NO];
}
NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateSeekingBackward");
break;
default:
if (_playPauseBtn) {
[self changePlayBtnStatus:NO];
}
NSLog(@"moviePlayBackStateDidChange : %ld", (long)_player.playbackState);
break;
}
}
}
- (void)anchorStatusChanged:(NSNotification *)notification // 获取主播状态通知
{
_bgView.anchorStatus = _player.anchorStatus;
_bgView.model = _bgModel;
}
- (void)anchorStatusConnectFailed //重新连接获取主播状态
{
[_player retryToGetAnchorStatusResult:^(BOOL result) {
NSLog(@"-------------重新获取主播状态%d", result ? YES : NO);
}];
}
#pragma mark - Button Action !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)backToList {
[_player stop];
[self.navigationController popViewControllerAnimated:YES];
}
#pragma mark - GetMethod !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (LiveBaseView *)liveBaseView
{
if (!_liveBaseView)
{
_liveBaseView = [LiveBaseView liveBaseView];
_liveBaseView.jumpType = JumpControllerTypePush;
_liveBaseView.viewController = self;
_liveBaseView.backgroundColor = [UIColor clearColor];
[_liveBaseView.closeBtn addTarget:self action:@selector(quitBtnClick) forControlEvents:UIControlEventTouchUpInside];
}
return _liveBaseView;
}
- (LVCUGCBackgroundView *)bgView {
if (!_bgView) {
_bgView = [[LVCUGCBackgroundView alloc] initWithFrame:self.view.bounds];
_bgView.hidden = YES;
[_bgView.backButton addTarget:self action:@selector(backToList) forControlEvents:UIControlEventTouchUpInside];
}
return _bgView;
}
- (UIView *)viewOne {
if (!_viewOne) {
_viewOne = [[UIView alloc] initWithFrame:CGRectMake(0, -SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT)];
_viewOne.backgroundColor = [UIColor blackColor];
_firstLoadView = [[LVCUGCPlayerLoadingView alloc] initWithFrame:self.view.bounds];
if (_index > 0) {
[_firstLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_playArray[_index-1].coverImgUrl] placeholderImage:_blurImage];
}
[_viewOne addSubview:_firstLoadView];
_oneY = -SCREEN_HEIGHT;
}
return _viewOne;
}
- (UIView *)viewSecond {
if (!_viewSecond) {
_viewSecond = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
_viewSecond.backgroundColor = [UIColor blackColor];
_secondLoadView = [[LVCUGCPlayerLoadingView alloc] initWithFrame:self.view.bounds];
[_secondLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_model.coverImgUrl] placeholderImage:_blurImage];
[_viewSecond addSubview:_secondLoadView];
// 点播退出按钮(直播播放前期也需要,在直播加载完成后去掉)
[_viewSecond addSubview:self.vodPlayerQuitBtn];
_SecondY = 0;
}
return _viewSecond;
}
- (UIView *)viewThird {
if (!_viewThird) {
_viewThird = [[UIView alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT)];
_viewThird.backgroundColor = [UIColor blackColor];
_thirdLoadView = [[LVCUGCPlayerLoadingView alloc] initWithFrame:self.view.bounds];
if (_index <= _playArray.count - 2 ) {
[_thirdLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_playArray[_index+1].coverImgUrl] placeholderImage:_blurImage];
}
[_viewThird addSubview:_thirdLoadView];
_ThirdY = SCREEN_HEIGHT;
}
return _viewThird;
}
- (UIButton *)vodPlayerQuitBtn {
if (!_vodPlayerQuitBtn) {
_vodPlayerQuitBtn = [UIButton buttonWithType:UIButtonTypeCustom];
_vodPlayerQuitBtn.frame = CGRectMake(SCREEN_WIDTH - 50, 50, 40, 40);
[_vodPlayerQuitBtn setImage:[UIImage imageNamed:@"LiveCloseNormal"] forState:UIControlStateNormal];
[_vodPlayerQuitBtn setImage:[UIImage imageNamed:@"LiveCloseTouch"] forState:UIControlStateHighlighted];
[_vodPlayerQuitBtn addTarget:self action:@selector(backToList) forControlEvents:UIControlEventTouchUpInside];
}
return _vodPlayerQuitBtn;
}
// ************************************** 进度条系列 **************************************
- (UIView *)bottomView { // 播放器底部功能条
if (!_bottomView) {
_bottomView = [[UIView alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT - 50, SCREEN_WIDTH, 50)];
_bottomView.backgroundColor = [UIColor colorWithWhite:0 alpha:0.7];
[_bottomView addSubview:self.currentTimeLabel];
[_bottomView addSubview:self.durationLabel];
[_bottomView addSubview:self.bufferProgress];
[_bottomView addSubview:self.timeSlide];
[_bottomView addSubview:self.playPauseBtn];
}
return _bottomView;
}
- (UIButton *)playPauseBtn { //播放暂停按钮
if (!_playPauseBtn) {
_playPauseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
_playPauseBtn.frame = CGRectMake(0, 5, 40, 40);
[_playPauseBtn setImage:[UIImage imageNamed:@"play"] forState:UIControlStateNormal];
[_playPauseBtn addTarget:self action:@selector(playPause) forControlEvents:UIControlEventTouchUpInside];
}
return _playPauseBtn;
}
- (UILabel *)currentTimeLabel { //当前播放时间
if (!_currentTimeLabel) {
_currentTimeLabel = [[UILabel alloc] initWithFrame:CGRectMake(40, 5, 63, 40)];
_currentTimeLabel.textColor = [UIColor whiteColor];
_currentTimeLabel.font = [UIFont systemFontOfSize:14];
[_currentTimeLabel setText:[NSString stringWithFormat:@"00:00:00"]];
}
return _currentTimeLabel;
}
- (UILabel *)durationLabel { //总时长
if (!_durationLabel) {
_durationLabel = [[UILabel alloc] initWithFrame:CGRectMake(SCREEN_WIDTH - 63, 5, 63, 40)];
_durationLabel.textColor = [UIColor whiteColor];
_durationLabel.font = [UIFont systemFontOfSize:14];
[_durationLabel setText:[NSString stringWithFormat:@"00:00:00"]];
}
return _durationLabel;
}
- (UISlider *)timeSlide { // 滑动
if (!_timeSlide) {
_timeSlide = [[UISlider alloc] initWithFrame:CGRectMake(103, 5, SCREEN_WIDTH - 166, 40)];
[_timeSlide setMinimumTrackTintColor:[UIColor redColor]];
[_timeSlide setMaximumTrackTintColor:[UIColor clearColor]];
[_timeSlide addTarget:self action:@selector(beginScrubbing) forControlEvents:UIControlEventTouchDown];
[_timeSlide addTarget:self action:@selector(endScrubbing) forControlEvents:UIControlEventTouchUpInside];
[_timeSlide addTarget:self action:@selector(endScrubbing) forControlEvents:UIControlEventTouchUpOutside];
}
return _timeSlide;
}
- (UIProgressView *)bufferProgress { // 缓冲
if (!_bufferProgress) {
_bufferProgress = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
_bufferProgress.frame = CGRectMake(105, 24, SCREEN_WIDTH - 166-4, 1);
_bufferProgress.trackTintColor = [UIColor whiteColor];
_bufferProgress.progressTintColor = [UIColor blueColor];
_bufferProgress.progress = 0;
}
return _bufferProgress;
}
#pragma mark - 进度条 ACtion !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)playPause { //播放暂停
if (_player.isPlaying) {
[_player pause];
} else {
[_player play];
}
}
- (void)timeChange { // 更新当前播放时间
_bufferProgress.progress = _player.playableDuration/_player.duration;
if (!_player.isPreparedToPlay) {
return;
}
_timeSlide.value = _player.currentPlaybackTime;
_timeSlide.maximumValue = _player.duration;
// 当前播放时间
NSInteger currentSeconds = (NSInteger)_player.currentPlaybackTime;
//NSLog(@"当前时间------> %ld",(long)currentSeconds);
NSInteger seconds = currentSeconds % 60;
NSInteger minutes = currentSeconds / 60;
NSInteger hours = minutes / 60;
// 总时长
NSInteger durationall = (NSInteger)_player.duration;
NSInteger durationSeconds = durationall % 60;
NSInteger durationMinutes = durationall / 60;
NSInteger durationHours = durationMinutes / 60;
// 当前时间
_currentTimeLabel.text = [NSString stringWithFormat:@"%02ld:%02ld:%02ld", (long)hours, (long)minutes%60, (long)seconds];
// 总时长
_durationLabel.text = [NSString stringWithFormat:@"%02ld:%02ld:%02ld", (long)durationHours, (long)durationMinutes%60, (long)durationSeconds];
}
- (void)beginScrubbing { // 滑动监听方法
[_player pause];
[_currentTimer invalidate];
}
- (void)endScrubbing {
[_player setCurrentPlaybackTime:_timeSlide.value];
[_player play];
_currentTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(timeChange) userInfo:nil repeats:YES];
}
- (void)changePlayBtnStatus:(BOOL)playing { //改变播放暂停按钮图片
if (playing) {
[_playPauseBtn setImage:[UIImage imageNamed:@"pause"] forState:UIControlStateNormal];
} else {
[_playPauseBtn setImage:[UIImage imageNamed:@"play"] forState:UIControlStateNormal];
}
}
#pragma mark - 移除通知 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)removeMovieNotificationObservers
{
[[NSNotificationCenter defaultCenter]removeObserver:self
name:MPMoviePlayerLoadStateDidChangeNotification
object:nil];
[[NSNotificationCenter defaultCenter]removeObserver:self
name:MPMoviePlayerPlaybackDidFinishNotification
object:nil];
[[NSNotificationCenter defaultCenter]removeObserver:self
name:MPMediaPlaybackIsPreparedToPlayDidChangeNotification
object:nil];
[[NSNotificationCenter defaultCenter]removeObserver:self
name:MPMoviePlayerPlaybackStateDidChangeNotification
object:nil];
[[NSNotificationCenter defaultCenter]removeObserver:self
name:CNLiveAnchorStatusChangedNotification
object:nil];
}
#pragma mark - 内存警告 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end