@brandbrigade/ott-bb-player 1.0.65 → 1.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -1
- package/dist/index.css +1 -0
- package/dist/index.html +17 -0
- package/dist/index.js +8 -0
- package/package.json +1 -1
- package/dist/OTTPlayer.js +0 -7
package/README.md
CHANGED
|
@@ -339,4 +339,16 @@ Added internal metrics logging to cloud
|
|
|
339
339
|
### Version v1.0.65
|
|
340
340
|
|
|
341
341
|
Added global augmentation status to beacon events
|
|
342
|
-
Console logs cleared
|
|
342
|
+
Console logs cleared
|
|
343
|
+
|
|
344
|
+
### Version v1.0.66
|
|
345
|
+
|
|
346
|
+
Minor fixes
|
|
347
|
+
|
|
348
|
+
### Version v1.0.67
|
|
349
|
+
|
|
350
|
+
Killswitch status is now checked on game params headers instead of zip headers
|
|
351
|
+
Added metrics for zip fetch as URL parameters
|
|
352
|
+
Implemented a zip fetch retry mechanism while there is still time to fetch them
|
|
353
|
+
Added OTTPlayer off method to unsubscribe from player events
|
|
354
|
+
Implemented destroy method to properly dispose OTTPlayer instances
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
body{margin:0}#player-container>*{top:0;left:0;width:100%}
|
package/dist/index.html
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<title>MK Player & BB OTT</title>
|
|
7
|
+
<script type="module" crossorigin src="./index.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="./index.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="player-container">
|
|
12
|
+
<video id="video-element" poster="" crossorigin controls></video>
|
|
13
|
+
</div>
|
|
14
|
+
<canvas id="canvas" style="display: none"></canvas>
|
|
15
|
+
<script src="https://www.virtualott.com/MK_player_lib/wmc.prod.js"></script>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|