-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobs-dock.html
63 lines (57 loc) · 1.9 KB
/
obs-dock.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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link href="css/monitor.css" rel="stylesheet"/>
</head>
<body class="obs">
<doctype html="">
<meta charset="UTF-8">
<script>window.currentScene = 'OBS Dock'</script>
<script src='dist/app.js'></script>
<div id="dock-logo-container"><img src="" style="width: 300px;" alt="logo" id="dock-logo"></div>
<form id="register" style="margin:0;">
<table>
<tr>
<th>Stream</th>
<td><label for="stream"></label><select id="stream"></select></td>
</tr>
<tr>
<th>Title</th>
<td><span id="session-title"></span></td>
</tr>
<tr>
<th>Date</th>
<td><span id="date">Wed, 27. Jan 2021, 9:07:53</span></td>
</tr>
<tr>
<th>Current scene</th>
<td><span id="scene"></span></td>
</tr>
<tr>
<th>Current slide</th>
<td><span id="slideTitle"></span> (<span id="slide"></span>)</td>
</tr>
<tr>
<th>Next scene</th>
<td><span id="sceneNext"></span></td>
</tr>
<tr>
<th>Next scene in</th>
<td><span id="countdown"></span></td>
</tr>
<tr>
<th>Current program point</th>
<td><span id="programIndex"></span></td>
</tr>
<tr>
<th>Has stream host</th>
<td><span id="hasHost"></span></td>
</tr>
</table>
<pre id="_data"></pre>
<div id="error"></div>
</form>
<button class="button" onclick="window.location.reload();">Refresh</button>
</doctype>
</body>
</html>