forked from red5pro/streaming-html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.15 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
42
43
44
<!doctype html>
{{> license}}
<html>
<head>
{{> meta title='Subscriber Remote Call'}}
{{> header-scripts}}
{{> header-stylesheets}}
<style>
.stream-section {
position: relative;
}
.callout {
position: absolute;
padding: 5px;
background-color: #dbdbdb;
top: 140px;
left: 10px;
}
</style>
</head>
<body>
{{> top-bar }}
{{> navigation isTestPage=true }}
<div id="app">
{{> settings-link}}
{{> test-info testTitle='Subscriber Remote Call'}}
<div class="stream-section">
{{> status-field-subscriber}}
{{> statistics-field packets_field='Packets Received'}}
<div class="centered">
<video id="red5pro-subscriber"
controls autoplay playsinline
class="red5pro-subscriber red5pro-media red5pro-media-background"
width="640" height="480">
</video>
<div id="message-callout" class="callout hidden"></div>
</div>
</div>
</div>
{{> body-scripts}}
{{> mobile-subscriber-util}}
<script src="index.js"></script>
</body>
</html>