腾讯直播
文档修订记录
版本号 | 发布时间 | 作者 |备注
----|----|----|----|----
1.0.0|2019/04/15 |余辉|初版
目标读者
1.移动开发人员
移动直播
基于RTMP 快速集成移动直播
集成过程
1.导入SDK
SDK 下载地址:
https://cloud.tencent.com/document/product/454/7873
下载对应的SDK导入工程并引用
2.工程配置
在工程目录下的 build.gradle 的 defaultConfig 里面,指定 ndk 兼容的架构:
defaultConfig {
applicationId "com.tencent.liteav.demo"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "2.0"
ndk {
abiFilters "armeabi", "armeabi-v7a"
// 如果您使用的是商业版,只能使用 armeabi 架构,即:
// abiFilters "armeabi",
}
}
3.代码混淆
-keep class com.tencent.** { *; }
4.配置 APP 权限
在 AndroidManifest.xml 中配置 APP 的权限,音视频类 APP 一般需要以下权限:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_LOGS" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.Camera"/>
<uses-feature android:name="android.hardware.camera.autofocus" />
5.SDK使用
public class LivePlayer extends FrmBaseActivity {
TXLivePlayer mLivePlayer;
TXCloudVideoView mView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setLayout(R.layout.tbd_liveplayer);
//mPlayerView 即 step1 中添加的界面 view
mView = (TXCloudVideoView)findViewById(R.id.video_view);
//创建 player 对象
mLivePlayer = new TXLivePlayer(getActivity());
//关键 player 对象与界面 view
mLivePlayer.setPlayerView(mView);
String flvUrl = getIntent().getExtras().get("url").toString();
mLivePlayer.startPlay(flvUrl, TXLivePlayer.PLAY_TYPE_LIVE_FLV); //推荐 FLV
}
@Override
protected void onDestroy() {
super.onDestroy();
mLivePlayer.stopPlay(true); // true 代表清除最后一帧画面
mView.onDestroy();
}
}
布局文件
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent">
<com.tencent.rtmp.ui.TXCloudVideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true" />
</android.support.constraint.ConstraintLayout>
互动直播
什么是互动直播
互动直播(Interactive Live Video Broadcasting),顾名思义,是 多路音视频实时互动 解决方案,查看典型场景实例。
- 与普通的单向直播相比,赋予了观众“露脸发声”的权利,因此对实时性、抗回声的要求更高。
- 开发者通过接入互动直播 SDK,可构建 1 对 1、1 对多、多对多的音视频通信,拥有与 QQ 音视频、一样卓越的通信质量。
- 互动直播房间可支持最多 10 路连麦视频、不限路数纯音频(一般移动设备的性能可完美支持 6~8 路视频)的多人直播,同一房间最高支持** 100 万**人并发,非常适合大规模秀场直播、视频社交、在线教育、远程咨询、多机位在线媒体转播等应用领域。
价格总览
详细价格查看地址:
https://cloud.tencent.com/document/product/268/3166
互动直播的费用:由三部分组成。
查看pdf
[必选]基础网络费用——所有接入互动直播的客户都需要消耗的费用,参阅 基础网络费用。
[可选]附加能力费用——只有在开通并使用了附加能力的情况下,才会消耗费用,比如录制、旁路直播等,参阅 附加能力费用。
[可选]技术支持费用——用于支付专门技术服务、特殊资源支持等的费用,需单独协商开通,参阅 技术支持费用。
下载 Demo
目前在 GitHub 上提供了两个示例:
集成过程
1.导入SDK
api 'com.tencent.ilivesdk:ilivesdk:1.9.6'
2.工程配置
在工程目录下的 build.gradle 的 defaultConfig 里面,指定 ndk 兼容的架构:
defaultConfig {
applicationId "com.tencent.liteav.demo"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "2.0"
ndk {
abiFilters "armeabi", "armeabi-v7a"
}
}
3.代码混淆
-keep class com.tencent.**{*;}
-dontwarn com.tencent.**
-keep class tencent.**{*;}
-dontwarn tencent.**
-keep class qalsdk.**{*;}
-dontwarn qalsdk.**
5.SDK使用
a.SDK初始化
在工程中的Application中加入下面代码
String appId="1400028096";//在腾讯云中创建应用后获取的SDK Appid
if(MsfSdkUtils.isMainProcess(this)){ // 仅在主线程初始化
// 初始化LiveSDK
ILiveSDK.getInstance().setCaptureMode(ILiveConstants.CAPTURE_MODE_SURFACETEXTURE);
ILiveLog.setLogLevel(ILiveLog.TILVBLogLevel.DEBUG);
ILiveSDK.getInstance().initSdk(this,appId);
ILiveRoomManager.getInstance().init(new ILiveRoomConfig()
.setRoomMsgListener(MessageObservable.getInstance()));
}
b.登录
2种登录方式 选择其中一种进行登录
iLiveLogin 需要算出用户的SIG用户秘钥
tlsLogin 直接用用户名密码即可以登录
/**
* iLiveSDK 登录(独立模式下直接使用该接口,托管模式需先用tlsLogin登录)
*
* @param id 用户id
* @param sig 用户密钥
*/
ILiveLoginManager.getInstance().iLiveLogin(userID, usersig, new ILiveCallBack() {
@Override
public void onSuccess(Object data) {
callback.applySuccess();
}
@Override
public void onError(String module, int errCode, String errMsg) {
callback.applyFail(errCode+errMsg);
}
});
/**
* 以托管方式登录TLS IM AV
* @param id
* @param pwd
* @param listener
*/
ILiveLoginManager.getInstance().tlsLoginAll(strAccount, strPwd, new ILiveCallBack() {
@Override
public void onSuccess(Object data) {
afterLogin();
}
@Override
public void onError(String module, int errCode, String errMsg) {
DlgMgr.showMsg(getContenxt(), "Login failed:"+module+"|"+errCode+"|"+errMsg);
}
});