-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (60 loc) · 2.21 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 charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta name="description" content="Example for using Radiant Media Player in a web-based Fire TV app">
<title>Fire TV app - Radiant Media Player</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="robots" content="noindex">
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<h1>Radiant Media Player</h1>
</div>
</div>
<div class="row">
<div class="col">
<img src="images/fire_tv_32.png" width="32" alt="Radiant Media Player icon"> <strong>Fire TV
Demo App</strong>
</div>
</div>
<div class="row">
<div class="col">
<h2>Select a player</h2>
<h3>VOD</h3>
<ul>
<li><a href="dash.html">DASH VOD AVC (H.264)</a></li>
<li><a href="dash-vp9.html">DASH VOD VP9</a></li>
<li><a href="dash-av1.html">DASH VOD AV1</a></li>
<li><a href="dash-hevc.html">DASH VOD HEVC</a></li>
<li><a href="fmp4-hls.html">CMAF HLS VOD AVC (H.264)</a></li>
</ul>
<h3>Live</h3>
<ul>
<li><a href="live-dash.html">Live DASH AVC (H.264)</a></li>
<li><a href="live-hls.html">Live CMAF HLS AVC (H.264)</a></li>
</ul>
<h3>Video advertisement (VAST)</h3>
<ul>
<li><a href="ads-dash.html">Video ads with rmp-vast - DASH</a></li>
<li><a href="ads-ima-dash.html">Video ads with Google IMA - DASH</a> - NOT SUPPORTED YET FOR TESTING PURPOSES
ONLY</li>
<li><a href="ads.html">Video ads with rmp-vast - CMAF HLS</a></li>
<li><a href="ads-ima.html">Video ads with Google IMA - CMAF HLS</a> - NOT SUPPORTED YET FOR TESTING PURPOSES
ONLY</li>
</ul>
<h2>Environment</h2>
<ul>
<li><a href="https://www.radiantmediaplayer.com/checkenv.html">Radiant Media Player
Environment API</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>