-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
41 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Push-To-Talk Demo</title>
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/unset.js"></script>
<script src="bundle.js"></script>
<script src="audiostream.js"></script>
<script src="audioTransmitter.js"></script>
<script src="audioBridge.js"></script>
<script src="audioReceiver.js"></script>
</head>
<body style="background-color: black; color: white;">
<div style="text-align:center;">
<h1 style="font-size:35px;">PTT Demo</h1>
<pre style="font-size:15px;" id="message"></pre>
<br />
<pre style="font-size:15px;" id="users"></pre>
<pre style="font-size:15px;" id="info-subscribe"></pre>
<input style="height:100px; width:200px;" id="btn-record" type="button" value="PUSH TO TALK!"
onpointerdown="audioTransmitter.start()" onpointerup="audioTransmitter.stop()"
onpointerout="audioTransmitter.stop()"></input>
</div>
<script src="index.js"></script>
<script src="activity.js"></script>
<!-- <script src="bundle.js"></script>
<script src="audiostream.js"></script>
<script src="events.js"></script>
<script src="ptt.js"></script>
<script src="index.js"></script>
<script src="activity.js"></script> -->
</body>
</html>