This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (40 loc) · 1.64 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
<!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.0">
<title>Stream Switch</title>
<link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Your Google Analytics script here -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-XXXX');
gtag('event', 'page_view');
</script>
</head>
<body>
<div align="center" id="stream-switch">
<stream-switch
azure-audio-live-event-label="Audio"
azure-audio-live-event-name="audio"
azure-streaming-endpoint-name="default"
azure-video-live-event-label="Video"
azure-video-live-event-name="video"
live-streaming-api-host="live.literallife.church"
loading-text="Loading the live stream"
offline-text="Live stream is currently offline"
organization-name="Literal Life Church"
placeholder-image="https://place-hold.it/1000x500"
polling-interval="15" />
</div>
<!-- Your JW Player script here -->
<script src="https://cdn.jwplayer.com/libraries/K3TGugln.js"></script>
<script src="https://cdn.jsdelivr.net/combine/npm/vue@2.6.11/dist/vue.min.js,npm/axios@0.19.2/dist/axios.min.js"></script>
<script src="stream-switch.js"></script>
<script src="main.js"></script>
</body>
</html>