-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Recorder</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Video Recorder</h1>
<div class="video-container">
<video id="screenVideo" autoplay></video>
<video id="cameraVideo" autoplay muted></video>
</div>
<div id="controls">
<!-- <div class="select-group">
<label for="cameraSelect">Camera:</label>
<select id="cameraSelect"></select>
</div> -->
<div class="select-group">
<label for="microphoneSelect">Microphone:</label>
<select id="microphoneSelect"></select>
</div>
<div class="select-group">
<!-- <label for="positionSelect">Camera Position:</label>
<select id="positionSelect">
<option value="top-left">Top Left</option>
<option value="top-right">Top Right</option>
<option value="bottom-left">Bottom Left</option>
<option value="bottom-right">Bottom Right</option>
</select> -->
</div>
<div class="button-group">
<button id="start">Start Recording</button>
<button id="stop" disabled>Stop Recording</button>
<button id="screen">Share Screen</button>
</div>
<a id="download" class="button" style="display: none;">Download Recording</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>