web-thunder-rtc
v1.0.2
Published
```shell npm i web-thunder-rtc ``` ### 使用方式 ````ts
Downloads
2
Readme
安装方式
npm i web-thunder-rtc
使用方式
// 创建初始化参数
const meetingOption: MeetingOption = new MeetingOption();
// 创建会议对象
const thunderRtc: ThunderRtc = new ThunderRtc(servers1, currentId.value, group.value, nickName.value, caller.value,true);
// 处理自己的视频
thunderRtc.localStream.subscribe((mediaStreams) => {
// TODO 处理自己本地的视频流
})
// 处理其他人的视频流
thunderRtc.remoteStreams.subscribe((data: any) => {
// TODO 处理其他人员的视频流
});
// 成员相关信息
thunderRtc.memberGroupStream.subscribe((memberGroup:any)=>{
// TODO 获取成员相关信息
});
thunderRtc.onEvent.subscribe((event: any) => {
// TODO 订阅视频SDK 相关事件
})