-
Notifications
You must be signed in to change notification settings - Fork 25
/
client2.js
61 lines (53 loc) · 2.28 KB
/
client2.js
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
var rtc = {
// 用来放置本地客户端。
client: null,
// 用来放置本地音视频频轨道对象。
localAudioTrack: null,
localVideoTrack: null,
};
var options = {
// 替换成你自己项目的 App ID。
appId: "",
// 传入目标频道名。
channel: "",
// 如果你的项目开启了 App 证书进行 Token 鉴权,这里填写生成的 Token 值。
token: "",
// 设置频道内的用户角色,可设为 "audience" 或 "host"
role: ""
};
async function startBasicLive() {
// 创建客户端
rtc.client = AgoraRTC.createClient({ mode: "rtc", codec: "vp8" });
// 设置角色
rtc.client.setClientRole(options.role);
// 订阅
rtc.client.on("user-published", async (user, mediaType) => {
// 开始订阅远端用户。
await rtc.client.subscribe(user, mediaType);
console.log("subscribe success", mediaType);
// 表示本次订阅的是视频。
if (mediaType === "video") {
// 订阅完成后,从 `user` 中获取远端视频轨道对象。
const remoteVideoTrack = user.videoTrack;
// 动态插入一个 DIV 节点作为播放远端视频轨道的容器。
const playerContainer = document.getElementById("videoContainer");
// 给这个 DIV 节点指定一个 ID,这里指定的是远端用户的 UID。
// playerContainer.id = user.uid.toString();
// document.body.append(playerContainer);
// 订阅完成,播放远端音视频。
// 传入 DIV 节点,让 SDK 在这个节点下创建相应的播放器播放远端视频。
remoteVideoTrack.play(playerContainer);
}
// 表示本次订阅的是音频。
if (mediaType === "audio") {
// 订阅完成后,从 `user` 中获取远端音频轨道对象。
const remoteAudioTrack = user.audioTrack;
// 播放音频因为不会有画面,不需要提供 DOM 元素的信息。
remoteAudioTrack.play();
}
});
// 加入渠道
const uid = await rtc.client.join(options.appId, options.channel, options.token, null);
console.log("uid", uid);
}
startBasicLive();