-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (55 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=1920, height=1080" />
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/main.css">
<meta charset="UTF-8">
<title>PublicPreview</title>
<script src="$WEBAPIS/webapis/webapis.js"></script>
</head>
<body>
<header class="main-header">
<h1 class="appName">PublicPreview</h1>
<h2 class="appVersion">2.0.0</h2>
<div class="tvInfo">
<p class="firmware"></p>
<p class="model"></p>
</div>
</header>
<section class="main">
<object id="av-player" type="application/avplayer"></object>
<div id="playerButtons">
<button data-list-item class="play">Play</button>
<button data-list-item class="stop">Stop</button>
<button data-list-item class="pause">Pause</button>
<button data-list-item class="ff">Fast Forward</button>
<button data-list-item class="rew">Rewind</button>
<button data-list-item class="fullscreen">Toggle fullscreen</button>
</div>
</section>
<section class="logs">
<h2>Logs:</h2>
<div data-list-item class="logsContainer">
</div>
</section>
<section class="info">
<section class="info-container">
<h2>Info</h2>
<p>This application demonstrates the use of Preview API.</p>
<p>After choosing a tile in Preview panel on SmartHub main screen corresponding video will start playing.</p>
<p>Please make sure that <b>Preview Server</b> and <b>Streaming Server</b> are running and are accessible by the TV.</p>
</section>
</section>
<section class="buttons" id="buttons">
<button data-list-item class="toggle-info">Show/hide info</button>
</section>
<script src="./js/utils.js"></script>
<script src="./js/keyhandler.js"></script>
<script src="./js/logger.js"></script>
<script src="./js/navigation.js"></script>
<script src="./js/init.js"></script>
<script src="./js/videoPlayer.js"></script>
<script src="./js/main.js"></script>
</body>
</html>