forked from red5pro/streaming-html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 3.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
{{> license}}
<html lang="eng">
<head>
{{> meta title='ConferenceStreamManagerProxy'}}
{{> header-scripts}}
{{> header-stylesheets}}
<link rel="stylesheet" href="../../css/conference.css">
<script src="../../script/subscription-status.js"></script>
</head>
<body>
{{> top-bar }}
{{> navigation isTestPage=true }}
<div id="app">
{{> settings-link}}
{{> test-title title='Conference - Stream Manager Proxy'}}
<div class="conference-section">
<div id="publisher-container" class="publisher-section publisher-container">
<div class="settings-area">
<p>
<label for="room-field" class="settings-label">Room:</label>
<input id="room-field" name="room-field" class="settings-input">
</p>
</div>
<div id="publisher-session" class="publisher-session hidden">
{{> status-field-publisher}}
{{> statistics-field packets_field='Packets Sent'}}
</div>
<div class="centered video-holder">
<video id="red5pro-publisher" class="red5pro-publisher"
controls autoplay playsinline muted
width="320" height="240">
</video>
</div>
<div id="publisher-settings" class="publisher-settings">
<p class="remove-on-broadcast">
<label class="device-label" for="streamname-field">Stream Name:</label>
<input id="streamname-field" name="streamname-field" class="settings-input">
</p>
<hr class="paddedHR" />
<p>
<label class="device-label" for="camera-select">Camera:</label>
<select class="control device-control settings-input" name="camera-select" id="camera-select"></select>
</p>
<p>
<label class="device-label" for="microphone-select">Microphone:</label>
<select class="control device-control settings-input" name="microphone-select" id="microphone-select"></select>
</p>
<p id="publisher-mute-notice" class="publisher-mute-notice remove-on-broadcast">
<span class="device-info">Video and Audio can be turned off after publish has started.</span>
</p>
<p id="publisher-mute-controls" class="publisher-mute-controls hidden">
<label for="video-check">Video: </label>
<input type="checkbox" id="video-check" name="video-check" checked>
<label for="audio-check">Audio: </label>
<input type="checkbox" id="audio-check" name="audio-check" checked>
</p>
<p id="publisher-name-field" class="publisher-name-field hidden"></p>
<div class="remove-on-broadcast">
<button id="join-button" class="ui-button">Join!</button>
</div>
</div>
</div>
<div id="subscribers" class="subscribers"></div>
</div>
<div class="centered status-field hidden">
<p>
<input type="text" id="input-field" />
<button id="send-button">send</button>
</p>
<hr>
<p>
<textarea id="so-field" disabled style="width: 50%; min-height: 240px; min-width: 320px"></textarea>
</p>
</div>
</div>
{{> body-scripts}}
<script src="conference-subscriber.js"></script>
<script src="device-selector-util.js"></script>
<script src="index.js"></script>
</body>
</html>