-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·39 lines (37 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Channelize.io - Live Stream Demo</title>
</head>
<style type="text/css">
body {
height: 580px;
}
.live-stream-demo {
margin: 20px;
}
.video-screen {
display: inline-block;
margin: 43px;
}
.live-stream {
float: right;
}
</style>
<body>
<div class="live-stream-demo">
<div class="video-screen">
<img src="https://cdn.channelize.io/apps/live-stream/2.0.0/images/live-stream.png" width="700" height="450px">
</div>
<div class="live-stream">
<div id="ch_live_stream"></div>
</div>
</div>
</body>
<script src="https://cdn.channelize.io/sdk/4.3.0/browser.js"></script>
<script src="https://cdn.channelize.io/apps/live-stream/2.1.0/liveStream.Channelize.js"></script>
<script>
const channelizeLiveStream = new ChannelizeLiveStream('qHvonVEyIxDLa6zh');
channelizeLiveStream.load((err,res)=> {});
</script>
</html>