-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
28 lines (25 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected]/js/GunRecorder.js"></script>
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected]/js/GunStreamer.js"></script>
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected]/js/GunViewer.js"></script>
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected]/js/mediabuffer.js"></script>
</head>
<body>
<button type="button" onclick="gunRecorder.startCamera()">Start Camera</button>
<button type="button" onclick="gunRecorder.startScreenCapture()">Start ScreenCapture</button>
<button id="record_button" type="button" onclick="gunRecorder.record()">Start Recording</button>
<br><br>
Streamer<br>
<video id="record_video" width="20%" autoplay muted></video>
<br>
<br>
Viewer<br>
<video id="remote" width="20%" autoplay muted></video>
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected]/js/integration.js"></script>
</body>
</html>