-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshareTheScreen.js
194 lines (180 loc) · 5.96 KB
/
shareTheScreen.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// create Agora client
var client = AgoraRTC.createClient({
mode: "rtc",
codec: "vp8"
});
AgoraRTC.enableLogUpload();
var localTracks = {
screenVideoTrack: null,
audioTrack: null,
screenAudioTrack: null
};
var remoteUsers = {};
// Agora client options
var options = {
appid: null,
channel: null,
uid: null,
token: null
};
var videoContainerSizes = {
"sm": {
height: 320,
width: 480
},
"lg": {
height: 480,
width: 720
}
};
// the demo can auto join channel with params in url
$(() => {
var urlParams = new URL(location.href).searchParams;
options.appid = urlParams.get("appid");
options.channel = urlParams.get("channel");
options.token = urlParams.get("token");
options.uid = urlParams.get("uid");
if (options.appid && options.channel) {
$("#uid").val(options.uid);
$("#appid").val(options.appid);
$("#token").val(options.token);
$("#channel").val(options.channel);
// Don't need for this demo
// $("#join-form").submit();
}
});
$("#join-form").submit(async function (e) {
e.preventDefault();
$("#join").attr("disabled", true);
try {
options.channel = $("#channel").val();
options.uid = Number($("#uid").val());
options.appid = $("#appid").val();
options.token = $("#token").val();
await join();
if (options.token) {
$("#success-alert-with-token").css("display", "block");
} else {
$("#success-alert a").attr("href", `index.html?appid=${options.appid}&channel=${options.channel}&token=${options.token}`);
$("#success-alert").css("display", "block");
}
} catch (error) {
console.error(error);
} finally {
$("#leave").attr("disabled", false);
}
});
$("#leave").click(function (e) {
leave();
});
async function join() {
// add event listener to play remote tracks when remote user publishs.
client.on("user-published", handleUserPublished);
client.on("user-unpublished", handleUserUnpublished);
let screenTrack;
// join a channel and create local tracks, we can use Promise.all to run them concurrently
[options.uid, localTracks.audioTrack, screenTrack] = await Promise.all([
// join the channel
client.join(options.appid, options.channel, options.token || null, options.uid || null),
// ** create local tracks, using microphone and screen
AgoraRTC.createMicrophoneAudioTrack({
encoderConfig: "music_standard"
}), AgoraRTC.createScreenVideoTrack({
encoderConfig: "720p"
}, "auto")]);
if (screenTrack instanceof Array) {
localTracks.screenVideoTrack = screenTrack[0];
localTracks.screenAudioTrack = screenTrack[1];
} else {
localTracks.screenVideoTrack = screenTrack;
}
// play local video track
localTracks.screenVideoTrack.play("local-player");
$("#local-player-name").text(`localVideo(${options.uid})`);
//bind "track-ended" event, and when screensharing is stopped, there is an alert to notify the end user.
localTracks.screenVideoTrack.on("track-ended", () => {
alert(`Screen-share track ended, stop sharing screen ` + localTracks.screenVideoTrack.getTrackId());
localTracks.screenVideoTrack && localTracks.screenVideoTrack.close();
localTracks.screenAudioTrack && localTracks.screenAudioTrack.close();
localTracks.audioTrack && localTracks.audioTrack.close();
});
// publish local tracks to channel
if (localTracks.screenAudioTrack == null) {
await client.publish([localTracks.screenVideoTrack, localTracks.audioTrack]);
} else {
await client.publish([localTracks.screenVideoTrack, localTracks.audioTrack, localTracks.screenAudioTrack]);
}
console.log("publish success");
}
async function leave() {
for (trackName in localTracks) {
var track = localTracks[trackName];
if (track) {
track.stop();
track.close();
localTracks[trackName] = undefined;
}
}
// remove remote users and player views
remoteUsers = {};
$("#remote-playerlist").html("");
// leave the channel
await client.leave();
$("#local-player-name").text("");
$("#join").attr("disabled", false);
$("#leave").attr("disabled", true);
console.log("client leaves channel success");
}
async function subscribe(user, mediaType) {
const uid = user.uid;
// subscribe to a remote user
await client.subscribe(user, mediaType);
if (mediaType === 'video') {
const player = $(`
<div id="player-wrapper-${uid}">
<div class="container-controls">
<p class="player-name">remoteUser(${uid})</p>
<button id="resize" type="button" class="btn btn-primary btn-sm">Resize video container (div element)</button>
</div>
<div id="player-${uid}" data-size-variant="sm" class="player"></div>
</div>
`);
$("#remote-playerlist").append(player);
user.videoTrack.play(`player-${uid}`);
$("#resize").click(() => handleVideoContainerResize(uid))
}
if (mediaType === 'audio') {
user.audioTrack.play();
}
}
function handleUserPublished(user, mediaType) {
//print in the console log for debugging
console.log('"user-published" event for remote users is triggered.');
const id = user.uid;
remoteUsers[id] = user;
subscribe(user, mediaType);
}
function handleUserUnpublished(user, mediaType) {
//print in the console log for debugging
console.log('"user-unpublished" event for remote users is triggered.');
if (mediaType === 'video') {
const id = user.uid;
delete remoteUsers[id];
$(`#player-wrapper-${id}`).remove();
}
}
function handleVideoContainerResize(uid) {
const videoContainer = $(`#player-${uid}`);
const sizeVariant = videoContainer.attr('data-size-variant');
if (sizeVariant === "sm") {
const sizes = videoContainerSizes["lg"];
videoContainer.css('width', sizes.width);
videoContainer.css('height', sizes.height);
videoContainer.attr('data-size-variant', 'lg');
} else {
const sizes = videoContainerSizes["sm"];
videoContainer.css('width', sizes.width);
videoContainer.css('height', sizes.height);
videoContainer.attr('data-size-variant', 'sm');
}
}