-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathindex.html
34 lines (34 loc) · 883 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
31
32
33
34
<!doctype html>
{{> license}}
<html>
<head>
{{> meta title='WebRTC Subscriber Audio-Only Test'}}
{{> header-scripts}}
{{> header-stylesheets}}
<style>
.audio-subscriber {
width: 100%;
}
</style>
</head>
<body>
{{> top-bar }}
<div id="app">
{{> settings-link}}
{{> test-info testTitle='Subscriber Audio-Only Test (WebRTC)'}}
<div class="stream-section">
{{> status-field-subscriber}}
{{> statistics-field packets_field='Packets Received'}}
<div class="centered">
<audio id="red5pro-subscriber"
autoplay playsinline controls
class="red5pro-subscriber audio-subscriber"></audio>
</div>
</div>
</div>
{{> footer}}
{{> body-scripts}}
{{> mobile-subscriber-util}}
<script src="index.js"></script>
</body>
</html>