-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.35 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.35 KB
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
45
46
47
48
<!doctype html>
{{> license}}
<html>
<head>
{{> meta title='Subscriber Test'}}
{{> header-scripts}}
{{> header-stylesheets}}
<style>
.settings-area {
background-color: #eee;
padding: 20px;
}
</style>
</head>
<body>
{{> top-bar }}
<div id="app">
{{> settings-link}}
{{> test-info testTitle='Subscriber Stream Switch Test'}}
<div class="stream-section">
{{> status-field-subscriber}}
{{> statistics-field packets_field='Packets Received'}}
<div class="centered">
<video id="red5pro-subscriber"
controls="controls" autoplay="autoplay" playsinline
class="red5pro-subscriber red5pro-media red5pro-media-background"
width="640" height="480">
</video>
<!-- XXX stream switch -->
<div class="settings-area">
<p class="settings-field settings-collapsable">
<label class="settings-label" for="stream-path">New stream path:</label>
<input id="stream-path" name="stream-path" type="text"></input>
</p>
<p><button class="ui-button" id="send-button">Switch subscriber streams</button></p>
</div>
<!-- XXX /stream switch -->
</div>
</div>
</div>
{{> footer}}
{{> body-scripts}}
{{> mobile-subscriber-util}}
<script src="index.js"></script>
</body>
</html>