实现原理,直播+聊天室(无人数上限类型聊天室)
1申请腾讯云账号
2购买(试用)相关产品
直播功能使用
标准直播
,弹幕使用即时通讯IM
直播相关设置
①直播域名配置
设置推流域名,播放域名,默认给了一个推流域名
②直播SDK License设置
③集成SDK
官方文档
tip:作者通过cocoapods集成报重复错误,后使用手动集成一样报错,搜索之后将Build Settings下Other Linker Flags 中 -all_load 删除集成成功
即时通讯IM
①创建应用
②集成SDK
不出意外,直播和即时通讯集成完成
功能实现
1 初始化
#import "AppDelegate.h"
@import TXLiteAVSDK_Smart;
@interface AppDelegate ()
@end
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// 直播初始化 对应License设置的URL 和key
[TXLiveBase setLicenceURL:LicenceURL key:LicenceKey];
}
2直播
#import "LivePalyViewController.h"
#import <ImSDK/TIMManager.h>
#import <ImSDK/TIMGroupManager.h>
#import <ImSDK/TIMMessage.h>
#import <ImSDK/TIMFriendshipManager.h>
#import <ImSDK/TIMConversation.h>
#import "GenerateTestUserSig.h"
@import TXLiteAVSDK_Smart;
@interface LivePalyViewController ()<TIMMessageListener>
-(void)setUI{
UIView *livcBackgroundView = [[UIView alloc]initWithFrame:self.view.bounds];
[self.view addSubview: livcBackgroundView];
myView.backgroundColor = [UIColor colorWithWhite:.4 alpha:.4];
_txLivePlayer = [[TXLivePlayer alloc] init];
/**
* 2.1 创建 Video 渲染 View,该控件承载着视频内容的展示。
*
* 变更历史:1.5.2版本将参数 frame 废弃,设置此参数无效,控件大小与参数 view 的大小保持一致,如需修改控件的大小及位置,请调整父 view 的大小及位置。 参考文档:[绑定渲染界面](https://www.qcloud.com/doc/api/258/4736#step-3.3A-.E7.BB.91.E5.AE.9A.E6.B8.B2.E6.9F.93.E7.95.8C.E9.9D.A2)
*
* @param frame Widget 在父 view 中的 frame
* @param view 父 view
* @param idx Widget 在父 view 上 的层级位置
*/
[_txLivePlayer setupVideoWidget:CGRectMake(0, 0, 0, 0) containView:livcBackgroundView insertIndex:0];
}
#pragma mark -获取直播地址
-(void)getLiveUrl{
...
[self playLive:url];
}
#pragma mark -播放
-(void) playLive:(NSString *)urlString{
/**
* 2.3 启动从指定 URL 播放 RTMP 音视频流
*
* @param url 完整的 URL(如果播放的是本地视频文件,这里传本地视频文件的完整路径)
* @param playType 播放类型
* @return 0表示成功,其它为失败
*/
[_txLivePlayer startPlay:urlString type:PLAY_TYPE_LIVE_FLV];
// [_txLivePlayer pause];暂停
// [_txLivePlayer resume];继续播放
}
#pragma mark -加入聊天室
-(void)joinGroup:(NSString *)room{
//room 即聊天室房间号,自行根据业务获取
[[TIMGroupManager sharedInstance] joinGroup:room msg:@"sss" succ:^{
NSLog(@"加入成功");
} fail:^(int code, NSString *msg) {
NSLog(@"加入失败");
}];
}
#pragma mark -登录IM
-(void)loginIM{
TIMManager *manager = [TIMManager sharedInstance];
//接受消息
[manager addMessageListener:self];
TIMSdkConfig *config = [[TIMSdkConfig alloc]init];
//后台自行查看 本文图5中SDKAppID
config.sdkAppId = 888888888;
[manager initSdk:config];
TIMUserConfig *userConfig = [[TIMUserConfig alloc]init];
TIMLoginParam *loginParam = [[TIMLoginParam alloc]init];
//用户名
loginParam.identifier = @"后台大佬给的IM用户名";
//鉴权
loginParam.userSig = [GenerateTestUserSig genTestUserSig: @"后台大佬给的IM用户名"];
//后台自行查看 本文图5中SDKAppID
loginParam.appidAt3rd = @"888888888";
[[TIMManager sharedInstance] login:loginParam succ:^{
NSLog(@"登录c成功:%@",[[TIMManager sharedInstance] getLoginUser]);
[self joinGroup:@"聊天房间号"];
} fail:^(int code, NSString *msg) {
}];
}
#pragma mark -接收消息
-(void)onNewMessage:(NSArray *)msgs{
//作者业务需求只有简单消息功能,故只判断消息体是否为文字类型
TIMMessage *mess = msgs[0];
TIMElem *elem = [mess getElem:0];
if ([elem isKindOfClass:[TIMTextElem class]]) {
TIMTextElem *textTel = (TIMTextElem *)elem;
[mess getSenderProfile:^(TIMUserProfile *profile) {
//获取发送者信息
NSString *str = [NSString stringWithFormat:@"%@:%@",profile.nickname,textTel.text];
if (profile.nickname.length == 0) {
str = [NSString stringWithFormat:@"游客:%@",textTel.text];
}
[self.dataArray addObject:str];
[self.tableView reloadData];
NSIndexPath *ip = [NSIndexPath indexPathForRow:self.dataArray.count -1 inSection:0];
[self.tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionBottom animated:YES]; //滚动到最后一行
}];
}
}
#pragma mark -发送消息
-(void)sendMessage:(NSString *)message{
TIMConversation *gro_conversation = [[TIMManager sharedInstance] getConversation:TIM_GROUP receiver:@"房间号"];
TIMTextElem *text_elen = [[TIMTextElem alloc]init];
[text_elen setText:message];
TIMMessage *msg = [[TIMMessage alloc]init];
[msg addElem:text_elen];
[gro_conversation sendMessage:msg succ:^{
NSLog(@"发送成功");
NSString *str = [NSString stringWithFormat:@"%@:%@",self.myName,text_elen.text];
[self.dataArray addObject:str];
[self.tableView reloadData];
NSIndexPath *ip = [NSIndexPath indexPathForRow:self.dataArray.count -1 inSection:0];
[self.tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionBottom animated:YES]; //滚动到最后一行
} fail:^(int code, NSString *msg) {
NSLog(@"发送失败");
}];
}
#pragma mark -设置昵称
-(void)setNickName{
/*
该方法在后台大佬不同步服务器与腾讯云即时通讯用户昵称时使用
IM登录成功后才可调用次方法
*/
[[TIMFriendshipManager sharedInstance]
modifySelfProfile:@{TIMProfileTypeKey_Nick:@"昵称"} succ:nil fail:nil];
}
3弹幕功能
弹幕使用UITableView简单集成,每次滚动最底部即可
NSIndexPath *ip = [NSIndexPath indexPathForRow:self.dataArray.count -1 inSection:0];
[self.tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionBottom animated:YES]; //滚动到最后一行
ps:若有问题可评论咨询,限时一个月,久了我也记得不清了。。。