-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (56 loc) · 2.11 KB
/
index.html
File metadata and controls
66 lines (56 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!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>PlayerHTMLShaka</title>
<script src="$WEBAPIS/webapis/webapis.js"></script>
</head>
<body>
<header class="main-header">
<h1 class="appName">PlayerHTMLShaka</h1>
<h2 class="appVersion">2.0.0</h2>
<div class="tvInfo">
<p class="firmware"></p>
<p class="model"></p>
</div>
</header>
<section class="main">
<p id="description">No description provided</p>
<section class="video-section">
<video id="video"></video>
</section>
<div class="background"></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 usage of Shaka Player on Tizen TV. It allows to use HTML5 tag for playing DRM encrypted content.</p>
</section>
</section>
<section class="buttons" id="buttons">
<button data-list-item class="playpause">Play</button>
<button data-list-item class="stop">Stop</button>
<button data-list-item class="next">Next</button>
<button data-list-item class="previous">Previous</button>
<button data-list-item class="ff">Fast Forward</button>
<button data-list-item class="rw">Rewind</button>
<button data-list-item class="togglefullscreen">Toggle Fullscreen</button>
<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="./assets/shaka-player.compiled.js"></script>
<script src="./js/main.js"></script>
</body>
</html>