-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" media="screen" href="styles.css" />
</head>
<body>
<div class="container row">
<div class="buttons col-4">
<button id="share" class="btn btn-primary d-block mb-1">
Share my mic and camera
</button>
<button id="show-video" class="btn btn-secondary d-block mb-1">
Show My Video
</button>
<button id="stop-video" class="btn btn-secondary d-block mb-1">
Stop My Video
</button>
<div class="mb-1">
<button id="change-size" class="btn btn-secondary mb-1">
Change screen size
</button>
<input type="text" id="vid-width" value="1280" />
<input type="text" id="vid-height" value="720" />
</div>
<div class="mb-1">
<button id="start-record" class="btn btn-secondary mb-1">
Start recording
</button>
<button id="stop-record" class="btn btn-secondary mb-1">
Stop Recording
</button>
<button id="play-record" class="btn btn-secondary mb-1">
Play Recording
</button>
</div>
<button id="share-screen" class="btn btn-secondary d-block mb-1">
Share Screen
</button>
<div>
<label>Select audio input: </label>
<select id="audio-input"></select>
</div>
<div>
<label>Select audio output: </label>
<select id="audio-output"></select>
</div>
<div>
<label>Select video input: </label>
<select id="video-input"></select>
</div>
</div>
<div class="videos col-8">
<div>
<h3>My feed</h3>
<video id="my-video" class="video" autoplay playsinline></video>
</div>
<div>
<h3>Their feed</h3>
<video id="other-video" class="video" autoplay playsinline></video>
</div>
</div>
</div>
<script src="scripts.js"></script>
<script src="changeButtons.js"></script>
<script src="changeVideoSize.js"></script>
<script src="screenRecorder.js"></script>
<script src="shareScreen.js"></script>
<script src="inputOutput.js"></script>
</body>
</html>