-
Notifications
You must be signed in to change notification settings - Fork 1
/
live-dash.html
39 lines (36 loc) · 1010 Bytes
/
live-dash.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<title>Fire TV Demo App - Live DASH AVC (H.264)</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="robots" content="noindex">
</head>
<body>
<script src="https://cdn.radiantmediatechs.com/rmp/8.4.0/js/rmp.min.js"></script>
<div id="rmp"></div>
<script>
var src = {
dash: 'https://5b44cf20b0388.streamlock.net:8443/live/ngrp:live_all/manifest.mpd'
};
var settings = {
licenseKey: 'your-license-key',
src: src,
autoplay: true,
delayToFade: 5000,
capLevelToPlayerSize: false,
ignoreDevicePixelRatio: false,
disableKeyboardControl: true,
contentMetadata: {
title: 'Fire TV Demo App - Live DASH AVC (H.264)'
},
skin: 'tv'
};
var elementID = 'rmp';
window.rmp = new RadiantMP(elementID);
rmp.init(settings);
</script>
<script src="js/player-live.js"></script>
</body>
</html>