-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
81 lines (69 loc) · 3.92 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Phil's Players - Select a player</title>
<!-- Bootstrap -->
<link href="css/bootstrap.flatly.min.css" title="default" rel="stylesheet">
<link href="css/bootstrap.darkly.min.css" title="dark" rel="stylesheet">
<link href="css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<link href="css/jumbotron-narrow.css" rel="stylesheet">
<!-- Style Switcher -->
<script src="js/docs-themes.js" type="text/javascript"></script>
<script type="text/javascript">set_style();</script>
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="index.html">Select a Player</a></li>
<li role="presentation"><a href="#" onclick='switch_style("dark"); return false;'>Dark</a></li>
<li role="presentation"><a href="#" onclick='switch_style("default"); return false;'>Light</a></li>
</ul>
</nav>
<h3 class="text-muted">Phil's Players</h3>
</div>
<div class="jumbotron">
<h1>Phil's Players</h1>
<p>A set of video players where you can bring your own HLS or DASH manifest URL for a quick test.</p>
<h2>Open Source players</h2>
<ul>
<li class="list-group-item"><a href="dashjs.html" >DashJS (DASH)</a></li>
<li class="list-group-item"><a href="hls-js.html" >HLS.js (HLS)</a> <br /> or <a href="hls-js-with-mux.html" >with Mux Data</a></li>
<li class="list-group-item"><a href="videojs-8-latest.html" >Video.js 8 (HLS or DASH)</a></li>
<li class="list-group-item"><a href="shaka-player.html" >Shaka Player (HLS or DASH)</a></li>
<li class="list-group-item"><a href="mux-video.html" ><mux-video> (HLS)</a></li>
<li class="list-group-item"><a href="mux-player.html" >Mux Player (HLS)</a></li>
</ul>
<h2>Commercial players</h2>
<ul>
<li class="list-group-item"><a href="bitmovin-player.html" >Bitmovin Player (HLS or DASH)</a></li>
<li class="list-group-item"><a href="jwplayer.html" >JWPlayer (HLS or DASH)</a></li>
<li class="list-group-item"><a href="theoplayer.html" >THEOplayer (HLS or DASH)</a></li>
<li class="list-group-item"><a href="bc-player.html" >Brightcove Player (DASH)</a></li>
<li class="list-group-item"><a href="bc-player-hls.html" >Brightcove Player (HLS)</a></li>
</ul>
<h2>Legacy players</h2>
<p><small>These players are old, but remain because some people still have old links to them. Eventually we'll remove these and redirect you to the latest version.</small></p>
<ul>
<li class="list-group-item"><a href="videojs-contrib-hls.html" >Video.js 5 with contrib-hls (HLS)</a></li>
<li class="list-group-item"><a href="videojs-7-vhs.html" >Video.js 7 (HLS or DASH)</a><br /> or <a href="videojs-7-vhs-with-mux.html" >with Mux Data</a><br /> or <a href="videojs-7-vhs-with-cast.html" >with Chromecast</a><br /> or <a href="videojs-contrib-dash.html" >Video.js 7 with contrib-dash (DASH) (With Widevine and Chromecast)</a></li>
<li class="list-group-item"><a href="wowza-player.html" >Wowza Player (HLS)</a></li>
</ul>
</div>
<div class="jumbotron">
<h2>Tell me more...</h2>
<p>Video player demo websites rarely let you test their player with your media.</p>
<p>This site lets you select a player, enter a HLS or DASH manifest URL, and hit play!</p>
<p><a href="https://github.com/philcluff/phils-players">Code's on Github!</a></p>
</div>
<footer class="footer">
<p>© Phil Cluff & <a href="https://github.com/philcluff/phils-players#authors"> The Authors</a> 2023.</p>
</footer>
</div>
<script src="js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>