This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (68 loc) · 3.1 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Basic Web Video Conference Application</title>
<script type="text/javascript" src="https://unpkg.com/@voxeet/voxeet-web-sdk"></script>
<script type="text/javascript" src="scripts/ui.js"></script>
</head>
<body>
<div id="app">
<h1 id="name-message">You are logged out.</h1>
<!-- Join or Leave a Conference -->
<div id="form">
<label>Conference alias :</label>
<input id="alias-input" value="Avengers meeting" />
<button id="join-btn" disabled>Join</button>
<button id="leave-btn" disabled>Leave</button>
<label id="label-dolby-voice"></label>
</div>
<!-- Actions on Video and Screen Share -->
<div id="actions">
<button id="start-video-btn" disabled>Start video</button>
<button id="stop-video-btn" disabled>Stop video</button>
<button id="start-audio-btn" disabled>Start audio</button>
<button id="stop-audio-btn" disabled>Stop audio</button>
<button id="start-screenshare-btn" disabled>Start screen share</button>
<button id="stop-screenshare-btn" disabled>Stop screen share</button>
</div>
<!-- Recording Actions and Status -->
<div id="recording">
<button id="start-recording-btn" disabled>Start recording</button>
<button id="stop-recording-btn" disabled>Stop recording</button>
<p id="record-status" style="color: red;"></p>
</div>
<div id="media-devices">
<h3>Media Devices</h3>
<!-- Video Devices -->
<div class="form">
<label for="video-devices">Video Devices:</label>
<select id="video-devices" class="custom-select"></select>
<button id="set-video-device-btn" type="button" disabled>Set</button>
</div>
<!-- Input Audio Devices -->
<div class="form">
<label for="input-audio-devices">Input Audio Devices:</label>
<select id="input-audio-devices" class="custom-select"></select>
<button id="set-input-audio-device-btn" type="button" disabled>Set</button>
</div>
<!-- Output Audio Devices -->
<div class="form">
<label for="output-audio-devices">Output Audio Devices:</label>
<select id="output-audio-devices" class="custom-select"></select>
<button id="set-output-audio-device-btn" type="button" disabled>Set</button>
</div>
</div>
<!-- Display the list of participants -->
<div id="participants">
<h3>Participants</h3>
<ul id="participants-list"></ul>
</div>
<!-- Container for the video streams -->
<div id="video-container"></div>
<!-- Container for the Screen Share -->
<div id="screenshare-container"></div>
</div>
<script type="text/javascript" src="scripts/client.js"></script>
</body>
</html>