PlayController.m
14.7 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
//
// PlayController.m
// RTMPiOSDemo
//
// Created by 蓝鲸 on 16/4/1.
// Copyright © 2016年 tencent. All rights reserved.
//
#import "PlayController.h"
#import "TXLivePlayListener.h"
#import "TXRTMPAPI.h"
#import <mach/mach.h>
#define RTMP_URL @"http://2718.liveplay.myqcloud.com/live/2718_01973243308211e6a2cba4dcbef5e35a.flv"
@interface PlayController ()<UITextFieldDelegate, TXLivePlayListener>
@end
@implementation PlayController
{
BOOL _bHWDec;
CGRect _videoWidgetFrame; //改变videoWidget的frame时候记得对其重新进行赋值
}
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onAppActive:) name:UIApplicationDidBecomeActiveNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onAppDeactive:) name:UIApplicationWillResignActiveNotification object:nil];
_videoWidgetFrame = [UIScreen mainScreen].bounds;
[self.view setBackgroundColor:[UIColor orangeColor]];
CGSize size = [[UIScreen mainScreen] bounds].size;
int icon_size = size.width / 10;
_cover = [[UIView alloc]init];
_cover.frame = CGRectMake(10.0f, 55 + 2*icon_size, size.width - 20, size.height - 75 - 3 * icon_size);
_cover.backgroundColor = [UIColor whiteColor];
_cover.alpha = 0.5;
_cover.hidden = YES;
[self.view addSubview:_cover];
int logheadH = 50;
_statusView = [[UITextView alloc] initWithFrame:CGRectMake(10.0f, 55 + 2*icon_size, size.width - 20, logheadH)];
_statusView.backgroundColor = [UIColor clearColor];
_statusView.alpha = 1;
_statusView.textColor = [UIColor blackColor];
_statusView.editable = NO;
_statusView.hidden = YES;
[self.view addSubview:_statusView];
_logViewEvt = [[UITextView alloc] initWithFrame:CGRectMake(10.0f, 55 + 2*icon_size + logheadH, size.width - 20, size.height - 75 - 3 * icon_size - logheadH)];
_logViewEvt.backgroundColor = [UIColor clearColor];
_logViewEvt.alpha = 1;
_logViewEvt.textColor = [UIColor blackColor];
_logViewEvt.editable = NO;
_logViewEvt.hidden = YES;
[self.view addSubview:_logViewEvt];
// Do any additional setup after loading the view.
NSArray *scArray = [[NSArray alloc] initWithObjects:@"推流",@"播放", nil];
UISegmentedControl* scSwitch = [[UISegmentedControl alloc] initWithItems:scArray];
scSwitch.frame = CGRectMake(75, 40, size.width-150, icon_size);
scSwitch.selectedSegmentIndex = 1;
scSwitch.tintColor = [UIColor blackColor];
[scSwitch addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:scSwitch];
self.txtRtmpUrl = [[UITextField alloc] initWithFrame:CGRectMake(10, 40 + icon_size + 10, size.width- 25 - icon_size, icon_size)];
[self.txtRtmpUrl setBorderStyle:UITextBorderStyleRoundedRect];
self.txtRtmpUrl.placeholder = RTMP_URL;
// self.txtRtmpUrl.text = RTMP_URL;
self.txtRtmpUrl.background = [UIImage imageNamed:@"Input_box"];
self.txtRtmpUrl.alpha = 0.5;
self.txtRtmpUrl.autocapitalizationType = UITextAutocorrectionTypeNo;
self.txtRtmpUrl.delegate = self;
[self.view addSubview:self.txtRtmpUrl];
UIButton* btnScan = [UIButton buttonWithType:UIButtonTypeCustom];
btnScan.frame = CGRectMake(size.width - 10 - icon_size , 40 + icon_size + 10, icon_size, icon_size);
[btnScan setImage:[UIImage imageNamed:@"QR_code"] forState:UIControlStateNormal];
[btnScan addTarget:self action:@selector(clickScan:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btnScan];
int icon_gap = (size.width - icon_size*5)/6;
int btn_index = 0;
_play_switch = NO;
_btnPlay = [self createBottomBtnIndex:btn_index++ Icon:@"start" Action:@selector(clickPlay:) Gap:icon_gap Size:icon_size];
_log_switch = NO;
[self createBottomBtnIndex:btn_index++ Icon:@"log" Action:@selector(clickLog:) Gap:icon_gap Size:icon_size];
_bHWDec = NO;
[self createBottomBtnIndex:btn_index++ Icon:@"quick2" Action:@selector(onClickHardware:) Gap:icon_gap Size:icon_size];
_screenPortrait = NO;
[self createBottomBtnIndex:btn_index++ Icon:@"portrait" Action:@selector(clickScreenOrientation:) Gap:icon_gap Size:icon_size];
_renderFillScreen = YES;
[self createBottomBtnIndex:btn_index++ Icon:@"adjust" Action:@selector(clickRenderMode:) Gap:icon_gap Size:icon_size];
_txLivePlayer = [[TXLivePlayer alloc] init];
[_txLivePlayer setLogLevel:LOGLEVEL_DEBUG];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (UIButton*)createBottomBtnIndex:(int)index Icon:(NSString*)icon Action:(SEL)action Gap:(int)gap Size:(int)size
{
UIButton* btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.frame = CGRectMake((index+1)*gap + index*size, [[UIScreen mainScreen] bounds].size.height - size - 10, size, size);
[btn setImage:[UIImage imageNamed:icon] forState:UIControlStateNormal];
[btn addTarget:self action:action forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
return btn;
}
#pragma -
-(void) onAppActive:(UIApplication*)app
{
if (_play_switch == YES) {
[self startRtmp];
}
}
-(void) onAppDeactive:(UIApplication*)app
{
if (_play_switch == YES) {
[self stopRtmp];
}
}
-(void) viewDidDisappear:(BOOL)animated
{
if (_play_switch == YES) {
[self stopRtmp];
}
}
#pragma -- example code bellow
- (void)clearLog {
_tipsMsg = @"";
_logMsg = @"";
[_statusView setText:@""];
[_logViewEvt setText:@""];
_startTime = [[NSDate date]timeIntervalSince1970]*1000;
_lastTime = _startTime;
}
-(BOOL)startRtmp{
[self clearLog];
NSString* strRtmpUrl = self.txtRtmpUrl.text;
if (strRtmpUrl.length == 0) {
strRtmpUrl = RTMP_URL;
}
if (!([strRtmpUrl hasPrefix:@"http:"] || [strRtmpUrl hasPrefix:@"rtmp:"] )) {
[self toastTip:@"请输入正确的播放地址"];
return NO;
}
NSArray* ver = [TXRtmpApi getSDKVersion];
if ([ver count] >= 3) {
_logMsg = [NSString stringWithFormat:@"rtmp sdk version: %@.%@.%@",ver[0],ver[1],ver[2]];
[_logViewEvt setText:_logMsg];
}
if(_txLivePlayer != nil)
{
_txLivePlayer.delegate = self;
[_txLivePlayer setupVideoWidget:_videoWidgetFrame ContainView:self.view InsertIndex:0];
//设置播放器缓存策略
//这里将播放器的策略设置为自动调整,调整的范围设定为1到4s,您也可以通过setCacheTime将播放器策略设置为采用
//固定缓存时间。如果您什么都不调用,播放器将采用默认的策略(默认策略为自动调整,调整范围为1到4s)
[_txLivePlayer setAutoAdjustCache:YES];
[_txLivePlayer setMinCacheTime:1];
[_txLivePlayer setMaxCacheTime:4];
[_txLivePlayer startPlay:strRtmpUrl];
if (_screenPortrait) {
[_txLivePlayer setRenderRotation:HOME_ORIENTATION_RIGHT];
} else {
[_txLivePlayer setRenderRotation:HOME_ORIENTATION_DOWN];
}
if (_renderFillScreen) {
[_txLivePlayer setRenderMode:RENDER_MODE_FILL_SCREEN];
} else {
[_txLivePlayer setRenderMode:RENDER_MODE_FILL_EDGE];
}
}
return YES;
}
- (void)stopRtmp{
if(_txLivePlayer != nil)
{
_txLivePlayer.delegate = nil;
[_txLivePlayer stopPlay];
[_txLivePlayer removeVideoWidget];
}
}
#pragma - ui event response.
- (void) clickPlay:(UIButton*) sender {
if (_play_switch == YES)
{
[self stopRtmp];
[sender setImage:[UIImage imageNamed:@"start"] forState:UIControlStateNormal];
_play_switch = NO;
[[UIApplication sharedApplication] setIdleTimerDisabled:NO];
}
else
{
if (![self startRtmp]) {
return;
}
[sender setImage:[UIImage imageNamed:@"suspend"] forState:UIControlStateNormal];
_play_switch = YES;
[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
}
}
- (void) clickLog:(UIButton*) sender {
if (_log_switch == YES)
{
_statusView.hidden = YES;
_logViewEvt.hidden = YES;
[sender setImage:[UIImage imageNamed:@"log"] forState:UIControlStateNormal];
_cover.hidden = YES;
_log_switch = NO;
}
else
{
_statusView.hidden = NO;
_logViewEvt.hidden = NO;
[sender setImage:[UIImage imageNamed:@"log2"] forState:UIControlStateNormal];
_cover.hidden = NO;
_log_switch = YES;
}
}
- (void) clickScreenOrientation:(UIButton*) sender {
_screenPortrait = !_screenPortrait;
if (_screenPortrait) {
[sender setImage:[UIImage imageNamed:@"landscape"] forState:UIControlStateNormal];
[_txLivePlayer setRenderRotation:HOME_ORIENTATION_RIGHT];
} else {
[sender setImage:[UIImage imageNamed:@"portrait"] forState:UIControlStateNormal];
[_txLivePlayer setRenderRotation:HOME_ORIENTATION_DOWN];
}
}
- (void) clickRenderMode:(UIButton*) sender {
_renderFillScreen = !_renderFillScreen;
if (_renderFillScreen) {
[sender setImage:[UIImage imageNamed:@"adjust"] forState:UIControlStateNormal];
[_txLivePlayer setRenderMode:RENDER_MODE_FILL_SCREEN];
} else {
[sender setImage:[UIImage imageNamed:@"fill"] forState:UIControlStateNormal];
[_txLivePlayer setRenderMode:RENDER_MODE_FILL_EDGE];
}
}
- (void) onClickHardware:(UIButton*) sender {
if (_play_switch == YES)
{
[self stopRtmp];
}
_txLivePlayer.enableHWAcceleration = !_bHWDec;
_bHWDec = _txLivePlayer.enableHWAcceleration;
if(_bHWDec)
{
[sender setImage:[UIImage imageNamed:@"quick"] forState:UIControlStateNormal];
}
else
{
[sender setImage:[UIImage imageNamed:@"quick2"] forState:UIControlStateNormal];
}
if (_play_switch == YES) {
if (_bHWDec) {
[self toastTip:@"切换为硬解码. 重启播放流程"];
}
else
{
[self toastTip:@"切换为软解码. 重启播放流程"];
}
[self startRtmp];
}
}
- (void) segmentAction:(UISegmentedControl*) sc
{
NSInteger idx = sc.selectedSegmentIndex;
if (idx == 0) {
[self stopRtmp];
_play_switch = NO;
[_btnPlay setImage:[UIImage imageNamed:@"start"] forState:UIControlStateNormal];
[self.navigationController popViewControllerAnimated:YES];
}
}
-(void) clickScan:(UIButton*) btn
{
}
#pragma -- UITextFieldDelegate
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return YES;
}
- (void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
[self.txtRtmpUrl resignFirstResponder];
}
/**
@method 获取指定宽度width的字符串在UITextView上的高度
@param textView 待计算的UITextView
@param Width 限制字符串显示区域的宽度
@result float 返回的高度
*/
- (float) heightForString:(UITextView *)textView andWidth:(float)width{
CGSize sizeToFit = [textView sizeThatFits:CGSizeMake(width, MAXFLOAT)];
return sizeToFit.height;
}
- (void) toastTip:(NSString*)toastInfo
{
CGRect frameRC = [[UIScreen mainScreen] bounds];
frameRC.origin.y = frameRC.size.height - 110;
frameRC.size.height -= 110;
__block UITextView * toastView = [[UITextView alloc] init];
toastView.editable = NO;
toastView.selectable = NO;
frameRC.size.height = [self heightForString:toastView andWidth:frameRC.size.width];
toastView.frame = frameRC;
toastView.text = toastInfo;
toastView.backgroundColor = [UIColor whiteColor];
toastView.alpha = 0.5;
[self.view addSubview:toastView];
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, 2 * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(){
[toastView removeFromSuperview];
toastView = nil;
});
}
#pragma ###TXLivePlayListener
-(void) appendLog:(NSString*) evt time:(NSDate*) date mills:(int)mil
{
NSDateFormatter* format = [[NSDateFormatter alloc] init];
format.dateFormat = @"hh:mm:ss";
NSString* time = [format stringFromDate:date];
NSString* log = [NSString stringWithFormat:@"[%@.%-3.3d] %@", time, mil, evt];
if (_logMsg == nil) {
_logMsg = @"";
}
_logMsg = [NSString stringWithFormat:@"%@\n%@", _logMsg, log ];
[_logViewEvt setText:_logMsg];
}
-(void) onPlayEvent:(int)EvtID WithParam:(NSDictionary*)param;
{
NSDictionary* dict = param;
dispatch_async(dispatch_get_main_queue(), ^{
if (EvtID == PLAY_ERR_NET_DISCONNECT) {
[self clickPlay:_btnPlay];
}
// NSLog(@"evt:%d,%@", EvtID, dict);
long long time = [(NSNumber*)[dict valueForKey:EVT_TIME] longLongValue];
int mil = time % 1000;
NSDate* date = [NSDate dateWithTimeIntervalSince1970:time/1000];
NSString* Msg = (NSString*)[dict valueForKey:EVT_MSG];
[self appendLog:Msg time:date mills:mil];
});
}
-(void) onNetStatus:(NSDictionary*) param
{
NSDictionary* dict = param;
dispatch_async(dispatch_get_main_queue(), ^{
int netspeed = [(NSNumber*)[dict valueForKey:NET_STATUS_NET_SPEED] intValue];
int vbitrate = [(NSNumber*)[dict valueForKey:NET_STATUS_VIDEO_BITRATE] intValue];
int abitrate = [(NSNumber*)[dict valueForKey:NET_STATUS_AUDIO_BITRATE] intValue];
int cachesize = [(NSNumber*)[dict valueForKey:NET_STATUS_CACHE_SIZE] intValue];
int dropsize = [(NSNumber*)[dict valueForKey:NET_STATUS_DROP_SIZE] intValue];
int jitter = [(NSNumber*)[dict valueForKey:NET_STATUS_NET_JITTER] intValue];
int fps = [(NSNumber*)[dict valueForKey:NET_STATUS_VIDEO_FPS] intValue];
int width = [(NSNumber*)[dict valueForKey:NET_STATUS_VIDEO_WIDTH] intValue];
int height = [(NSNumber*)[dict valueForKey:NET_STATUS_VIDEO_HEIGHT] intValue];
float cpu_usage = [(NSNumber*)[dict valueForKey:NET_STATUS_CPU_USAGE] floatValue];
NSString* log = [NSString stringWithFormat:@"CPU:%.1f%%\tRES:%d*%d\tSPD:%dkb/s\nJITT:%d\tFPS:%d\tARA:%dkb/s\nQUE:%d\tDRP:%d\tVRA:%dkb/s",
cpu_usage*100,
width,
height,
netspeed,
jitter,
fps,
abitrate,
cachesize,
dropsize,
vbitrate];
[_statusView setText:log];
});
}
@end