forked from niklasenbom/RecordingApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.05 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
<html>
<head>
<style>
body {
background: white;
display: -webkit-flex;
-webkit-justify-content: center;
-webkit-align-items: center;
-webkit-flex-direction: column;
}
video {
width: 320;
height: 180;
border: 1px solid #e2e2e2;
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<video id="video" autoplay></video>
<p>
<button id="recDesktop">Record Desktop</button>
<button id="recWindow">Record Window</button>
<button id="recCamera">Record Camera</button>
<button id="recTab">Record Chrome Tab</button>
<br><label id="AudioLabel"> <input type="checkbox" id="Audio" value="false">Include Microphone Audio</label>
<br><label id="sysAudioLabel"> <input type="checkbox" id="sysAudio" value="false">Include System Audio</label>
</p>
<button id="recStop" hidden="true">Stop Recording</button>
<p>
<button id="playButton" hidden="true">Play Recording</button>
<button id="downloadButton" hidden="true">Download file</button>
</p>
<script src="app.js"></script>
</body>
</html>