forked from manofearth/microm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 886 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Microm</title>
</head>
<body>
<button id="record">Record</button>
<button id="play">Play</button>
<button id="pause">Pause</button>
<button id="stop">Stop</button>
<button id="get-mp3">Get mp3</button>
<button id="get-wav">Get wav</button>
<button id="get-base64">Get base64</button>
<button id="download">Download</button>
<hr>
<div id="status">
Status: <span>paused</span>
</div>
<div id="duration">
Duration: <span>0</span>
</div>
<div id="current-time">
Current time: <span>0</span>
</div>
<!-- change the host to ngrok to test ios -->
<script src="http://localhost:8090/webpack-dev-server.js"></script>
<script src="http://localhost:8090/assets/microm.js"></script>
<script src="http://localhost:8090/example.js"></script>
</body>
</html>