-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updates to Radiant Media Player 6.2.0 - Revamps demo structure - Adds low latency live HLS support and example - DRM support out of BETA
- Loading branch information
1 parent
8252cc2
commit 577f4f4
Showing
18 changed files
with
233 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Generated by package manager | ||
/node_modules/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
body { | ||
font-family: 'PT Sans', sans-serif; | ||
} | ||
|
||
.rmp-tv-player .rmp-i-quick-forward-tv, | ||
.rmp-tv-player .rmp-i-quick-rewind-tv { | ||
display: none !important; | ||
font-family: Tahoma, Verdana, sans-serif; | ||
} | ||
|
||
pre { | ||
font-size: 12px; | ||
} | ||
} | ||
|
||
/* Hide default HTML5 video Google Cast Icon */ | ||
/* The player does that job with JavaScript but it seems FireOS needs CSS as well to hide this icon */ | ||
video::-webkit-media-controls-overlay-enclosure { | ||
display: none !important; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!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 - DASH VOD VP9/AVC with multiple audios and multiple captions</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/6.2.0/js/rmp.min.js"></script> | ||
<div id="rmpPlayer"></div> | ||
<script> | ||
const src = { | ||
dash: 'https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd' | ||
}; | ||
const settings = { | ||
licenseKey: 'your-license-key', | ||
src: src, | ||
contentMetadata: { | ||
title: 'Fire TV Demo App - DASH VOD VP9/AVC with multiple audios and multiple captions' | ||
}, | ||
autoplay: true, | ||
skin: 'tv' | ||
}; | ||
const elementID = 'rmpPlayer'; | ||
window.rmp = new RadiantMP(elementID); | ||
window.rmp.init(settings); | ||
</script> | ||
<script src="js/player.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.