-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecordingTest.html
More file actions
33 lines (31 loc) · 956 Bytes
/
RecordingTest.html
File metadata and controls
33 lines (31 loc) · 956 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>MediaRecorder API - Sample</title>
</head>
<body>
<h1> MediaRecorder API example</h1>
<div id='label'></div>
<div id='gUMArea'>
<div>
Record:
<input type="radio" name="media" value="audio">audio
</div>
<button class="btn btn-default" id='gUMbtn'>Request Stream</button>
</div>
<div id='btns'>
<button class="btn btn-default" id='start'>Start</button>
<button class="btn btn-default" id='stop'>Stop</button>
<button class="btn btn-default" id='allbtn'>All</button>
</div>
<div>
<ul class="list-unstyled" id='ul'></ul>
</div>
<div>
<ul class="list-unstyled" id='all'></ul>
</div>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.283.1.min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="AWS_AudioUpload.js"></script>
</body>
</html>