更新记录
1.0.0(2024-03-15)
- UxFrame TRTC(腾讯音视频通话直播)SDK 1.0.0版本正式发布!
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.03,Android:4.4,iOS:不确定,HarmonyNext:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
UxFrame TRTCSDK 1.0.0
UxFrame TRTCSDK是基于腾讯实时音视频TRTCSDK开发的uts原生插件
前言介绍
欢迎使用UxFrame TRTCSDK!此插件是基于腾讯实时音视频TRTCSDK开发,轻松实现语音通话、视频通话、多人语音通话、多人视频通话、语音直播、视频直播、录屏直播等功能!
官方文档
https://www.uxframe.cn
import * as uxtrtc from "@/uni_modules/ux-trtc"
// 注册
uxtrtc.register({
appid: '您的appid',
secretkey: '您的secretkey',
success: (res) => {
console.log(res)
}
} as RegisterOptions)
// 进入房间
uxtrtc.enterRoom({
scene: '场景值',
userId: '用户id',
roomId: '房间id',
success: (res) => {
console.log(res);
},
fail: (err) => {
console.log(err);
}
} as LoginOptions)
// 退出房间
uxtrtc.exitRoom()
...