-
Notifications
You must be signed in to change notification settings - Fork 150
/
index.html
297 lines (290 loc) · 10.2 KB
/
index.html
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<!doctype html>
<html lang="en">
<head>
<title>Livekit test app</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8">
<h2>Livekit Sample App</h2>
<br />
<div id="connect-area">
<div>
<b>LiveKit URL</b>
</div>
<div>
<input type="text" class="form-control" id="url" value="ws://localhost:7880" />
</div>
<div>
<b>Token</b>
</div>
<div>
<input type="text" class="form-control" id="token" />
</div>
<div>
<b>E2EE key</b>
</div>
<div>
<input type="text" class="form-control" id="crypto-key" />
</div>
</div>
<!-- connect options -->
<div id="options-area">
<div>
<input type="checkbox" class="form-check-input" id="publish-option" checked />
<label for="publish-option" class="form-check-label"> Publish </label>
</div>
<div>
<input type="checkbox" class="form-check-input" id="simulcast" checked />
<label for="simulcast" class="form-check-label"> Simulcast </label>
</div>
<div>
<input type="checkbox" class="form-check-input" id="dynacast" checked />
<label for="dynacast" class="form-check-label"> Dynacast </label>
</div>
<div>
<input type="checkbox" class="form-check-input" id="adaptive-stream" checked />
<label for="adaptive-stream" class="form-check-label"> AdaptiveStream </label>
</div>
<div>
<input type="checkbox" class="form-check-input" id="force-turn" />
<label for="force-turn" class="form-check-label"> Force TURN </label>
</div>
<div>
<input type="checkbox" class="form-check-input" id="auto-subscribe" checked />
<label for="auto-subscribe" class="form-check-label"> Auto Subscribe </label>
</div>
<div>
<input type="checkbox" class="form-check-input" id="e2ee" />
<label for="e2ee" class="form-check-label"> E2E Encryption </label>
</div>
<div>
<select id="preferred-codec" class="custom-select" style="width: auto"></select>
</div>
<div>
<select
id="scalability-mode"
class="custom-select"
style="width: auto"
disabled="true"
></select>
</div>
</div>
<!-- actions -->
<div id="actions-area">
<div>
<button
id="connect-button"
class="btn btn-primary mt-1"
type="button"
onclick="appActions.connectWithFormInput()"
>
Connect
</button>
</div>
<div>
<button
id="toggle-audio-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.toggleAudio()"
>
Enable Mic
</button>
<button
id="toggle-video-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.toggleVideo()"
>
Enable Camera
</button>
<button
id="flip-video-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.flipVideo()"
>
Flip Camera
</button>
<button
id="share-screen-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.shareScreen()"
>
Share Screen
</button>
<button
id="toggle-e2ee-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.toggleE2EE()"
>
Enable E2EE
</button>
<button
id="e2ee-ratchet-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.ratchetE2EEKey()"
>
Ratchet Key
</button>
<select
id="simulate-scenario"
class="custom-select"
style="width: auto"
onchange="appActions.handleScenario(event)"
>
<option value="" selected>Simulate</option>
<option value="signal-reconnect">Signal reconnect</option>
<option value="full-reconnect">Full reconnect</option>
<option value="resume-reconnect">Resume reconnect</option>
<option value="disconnect-signal-on-resume">Signal disconnect on resume</option>
<option value="disconnect-signal-on-resume-no-messages">
Signal disconnect on resume no msgs
</option>
<option value="speaker">Speaker update</option>
<option value="node-failure">Node failure</option>
<option value="server-leave">Server booted</option>
<option value="migration">Migration</option>
<option value="force-tcp">Force TCP</option>
<option value="force-tls">Force TURN/TLS</option>
<option value="subscribe-all">Subscribe all</option>
<option value="unsubscribe-all">Unsubscribe all</option>
<option value="leave-full-reconnect">Leave Request Full Reconnect</option>
</select>
<button
id="disconnect-room-button"
class="btn btn-danger mt-1"
disabled
type="button"
onclick="appActions.disconnectRoom()"
>
Disconnect
</button>
<button
id="start-audio-button"
class="btn btn-secondary mt-1"
disabled
type="button"
onclick="appActions.startAudio()"
>
Start Audio
</button>
<select
id="preferred-quality"
class="custom-select"
style="width: auto"
onchange="appActions.handlePreferredQuality(event)"
>
<option value="" selected>PreferredQuality</option>
<option value="high">high</option>
<option value="medium">medium</option>
<option value="low">low</option>
</select>
<select
id="preferred-fps"
class="custom-select"
style="width: auto"
onchange="appActions.handlePreferredFPS(event)"
>
<option value="" selected>PreferredFPS</option>
<option value="30">30</option>
<option value="15">15</option>
<option value="8">8</option>
</select>
</div>
</div>
<div id="inputs-area">
<div>
<select
id="video-input"
class="custom-select"
onchange="appActions.handleDeviceSelected(event)"
>
<option selected>Video Input (default)</option>
</select>
</div>
<div>
<select
id="audio-input"
class="custom-select"
onchange="appActions.handleDeviceSelected(event)"
>
<option selected>Audio Input (default)</option>
</select>
</div>
<div>
<select
id="audio-output"
class="custom-select"
onchange="appActions.handleDeviceSelected(event)"
>
<option selected>Audio Output (default)</option>
</select>
</div>
</div>
</div>
<div class="col-md-4">
<h3>Chat</h3>
<div id="chat-area">
<textarea class="form-control" id="chat" rows="9"></textarea>
<div id="chat-input-area">
<div>
<input
type="text"
class="form-control"
id="entry"
placeholder="Type your message here"
/>
</div>
<div>
<button
id="send-button"
class="btn btn-primary"
type="button"
onclick="appActions.enterText()"
disabled
>
Send
</button>
</div>
</div>
</div>
</div>
</div>
<div id="screenshare-area">
<div>
<span id="screenshare-info"> </span>
<span id="screenshare-resolution"> </span>
</div>
<video id="screenshare-video" autoplay playsinline></video>
</div>
<div id="participants-area"></div>
<div id="log-area">
<textarea id="log"></textarea>
</div>
</div>
<script src="./demo.ts" type="module"></script>
<!-- for icons -->
<script src="https://kit.fontawesome.com/7c1c4c7e9c.js" crossorigin="anonymous"></script>
</body>
</html>