-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·81 lines (77 loc) · 4.08 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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="og:title" content="TasPol Live">
<meta property="og:description" content="Tasmanian Parliament live stream.">
<meta property="og:image" content="http://taspol.live/img/thumbnail.jpg">
<meta property="og:url" content="http://taspol.live">
<meta name="twitter:card" content="summary_large_image">
<title>TasPol Live</title>
<link rel="stylesheet" href="http://vjs.zencdn.net/5.8.8/video-js.css">
<link rel="stylesheet" href="css/bootstrap.darkly.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col text-center">
<h1 class="display-4 live mt-5 mb-4">TasPol<span>Live</span></h1>
<h2 class="text-muted mb-2">Tasmanian Parliament <br class="opposite">live stream</h2>
<p class="mb-4">Unofficial cross-browser player for the Tasmanian Parliament live stream,<br>the official parliamentary website is available at <a class="text-info" href="http://www.parliament.tas.gov.au/">http://www.parliament.tas.gov.au/</a></p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-header">
Legislative Council Live Stream
</div>
<div class="card-body">
<video class="video-js vjs-default-skin" id="upper-house-player">
<source type="application/x-mpegURL" src="http://202.7.15.203:1935/LC/legco_240p/playlist.m3u8">
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>.
</p>
</video>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
House of Assembly Live Stream
</div>
<div class="card-body">
<video class="video-js vjs-default-skin" id="lower-house-player">
<source type="application/x-mpegURL" src="http://202.7.15.203:1935/HA/house_240p/playlist.m3u8">
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>.
</p>
</video>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col text-center">
<a class="github-button" href="https://github.com/owenandrews/taspol.live" data-size="large" aria-label="TasPol.live on GitHub">TasPol.live on GitHub</a>
</div>
</div>
</div>
<script src="https://unpkg.com/video.js/dist/video.js"></script>
<script src="https://unpkg.com/videojs-contrib-hls/dist/videojs-contrib-hls.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script>
var upperHousePlayer = videojs('upper-house-player', {
controls: true,
fluid: true
});
var lowerHousePlayer = videojs('lower-house-player', {
controls: true,
fluid: true
});
</script>
</body>
</html>