-
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 for Radiant Media Player 8 - fixes remote navigation for latest FireOS updates - adds new example
- Loading branch information
1 parent
82ac34f
commit 05c2c25
Showing
18 changed files
with
453 additions
and
176 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,38 @@ | ||
<!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 - Video ads with rmp-vast - DASH</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://www.radiantmediaplayer.com/media/v1/avc-mp4/dash/manifest.mpd' | ||
}; | ||
var settings = { | ||
licenseKey: 'your-license-key', | ||
src: src, | ||
contentMetadata: { | ||
title: 'Fire TV Demo App - Video ads with rmp-vast - DASH' | ||
}, | ||
autoplay: true, | ||
ads: true, | ||
adParser: 'rmp-vast', | ||
adTagUrl: 'https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/single_ad_samples&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ct%3Dlinear&correlator=' + Date.now(), | ||
skin: 'tv' | ||
}; | ||
var elementID = 'rmp'; | ||
window.rmp = new RadiantMP(elementID); | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!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 - Video ads with Google IMA - DASH</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://www.radiantmediaplayer.com/media/v1/avc-mp4/dash/manifest.mpd' | ||
}; | ||
var settings = { | ||
licenseKey: 'your-license-key', | ||
src: src, | ||
contentMetadata: { | ||
title: 'Fire TV Demo App - Video ads with Google IMA - DASH' | ||
}, | ||
autoplay: true, | ||
ads: true, | ||
adTagUrl: 'https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/single_ad_samples&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ct%3Dlinear&correlator=' + Date.now(), | ||
skin: 'tv' | ||
}; | ||
var elementID = 'rmp'; | ||
window.rmp = new RadiantMP(elementID); | ||
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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!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 HEVC</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://www.radiantmediaplayer.com/media/v1/hevc/dash/manifest.mpd' | ||
}; | ||
var settings = { | ||
licenseKey: 'your-license-key', | ||
src: src, | ||
contentMetadata: { | ||
title: 'Fire TV Demo App - DASH VOD HEVC' | ||
}, | ||
autoplay: true, | ||
skin: 'tv' | ||
}; | ||
var elementID = 'rmp'; | ||
window.rmp = new RadiantMP(elementID); | ||
rmp.init(settings); | ||
</script> | ||
<script src="js/player.js"></script> | ||
</body> | ||
|
||
</html> |
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
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.