This repository was archived by the owner on Sep 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (47 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HyperDeck Playlist Service</title>
<script src="index.js"></script>
<style>
table, th, td {
border-collapse: collapse;
border: 1px solid black;
padding: 5px;
}
table {
float: left;
margin: 10px;
}
</style>
</head>
<body>
<h2>HyperDeck Playlist Service</h2>
<div id="divHeader">
<span id="tdStatus"></span>
<div id="tdSpeed"></div>
<div id="tdSlotId"></div>
<div id="tdClipId"></div>
<div id="tdSingleClipMode"></div>
<div id="tdCurrentTimeCode"></div>
<div id="tdVideoFormat"></div>
<div id="tdLoop"></div>
</div>
<div id="divControls">
<br />
<button id="buttonRefreshClipList" onclick="refreshClipList()">Refresh HyperDeck Clip List</button>
<button id="buttonSwitchClipTables" onclick="switchClipTables(this)">Show Play List</button>
<button id="buttonPlayNoLoop" onclick="play(false)">Play (Loop: No)</button>
<button id="buttonPlayYesLoop" onclick="play(true)">Play (Loop: Yes)</button>
<button id="buttonStop" onclick="stop()">Stop</button>
<select id="selectPlayLists" onchange="getClipsInPlayList(this)"></select>
<br />
</div>
<div id="divClipsTable">
<table id="tableShowClips"></table>
</div>
<div id="divFooter">
</div>
</body>
</html>