@playkit-js/playkit-js-dual-screen 3.2.4 → 3.2.5-canary.0-0d664f0
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/CHANGELOG.md +10 -1
- package/cypress/public/index.html +4 -2
- package/demo/index.html +57 -0
- package/dist/playkit-dual-screen.js +1 -1
- package/dist/playkit-dual-screen.js.map +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### 3.2.5-canary.0-0d664f0 (2025-04-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **FEC-14452:** player v 7 transcript navigate order with shift tab from search result arrows is off ([#177](https://github.com/kaltura/playkit-js-dual-screen/issues/177)) ([0d664f0](https://github.com/kaltura/playkit-js-dual-screen/commit/0d664f0))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
### 3.2.4 (2025-04-02)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -367,7 +376,7 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
367
376
|
### Bug Fixes
|
|
368
377
|
|
|
369
378
|
* **FEV-1103:** incorrect live indicator color (state) appear when changing states between DVR to live ([#43](https://github.com/kaltura/playkit-js-dual-screen/issues/43)) ([b020a2b](https://github.com/kaltura/playkit-js-dual-screen/commit/b020a2b8cb8480bd12073cd1dd54534b207191fc))
|
|
370
|
-
* **FEV-1120:** parent and child screens cannot be switched on SBS layout ([#45](https://github.com/kaltura/playkit-js-dual-screen/issues/45)) ([a7c1f95](https://github.com/kaltura/playkit-js-dual-screen/commit/
|
|
379
|
+
* **FEV-1120:** parent and child screens cannot be switched on SBS layout ([#45](https://github.com/kaltura/playkit-js-dual-screen/issues/45)) ([a7c1f95](https://github.com/kaltura/playkit-js-dual-screen/commit/a7c1f95907784881770f8bc3620400470e1e3815))
|
|
371
380
|
* **FEV-1127:** slide appear in child container when changing slides in webcast application while producer set "hide slides" mode ([#44](https://github.com/kaltura/playkit-js-dual-screen/issues/44)) ([914225e](https://github.com/kaltura/playkit-js-dual-screen/commit/914225ebcfc18a4c3e97ef9b29e98ae342002bdd))
|
|
372
381
|
* **FEV-1130:** Captions disappear when child video is in hidden mode ([#46](https://github.com/kaltura/playkit-js-dual-screen/issues/46)) ([3108788](https://github.com/kaltura/playkit-js-dual-screen/commit/31087880e4cc8265e435610976126cde763e548a))
|
|
373
382
|
|
|
@@ -30,8 +30,10 @@
|
|
|
30
30
|
top: 95vh;
|
|
31
31
|
}
|
|
32
32
|
</style>
|
|
33
|
-
<script src=
|
|
34
|
-
<script src=
|
|
33
|
+
<script src="https://unpkg.com/@playkit-js/kaltura-player-js@canary/dist/kaltura-ovp-player.js"></script>
|
|
34
|
+
<script src="https://unpkg.com/@playkit-js/playkit-js-kaltura-cuepoints@canary/dist/playkit-kaltura-cuepoints.js" type="text/javascript"></script>
|
|
35
|
+
<script src="https://unpkg.com/@playkit-js/playkit-js-timeline@canary/dist/playkit-timeline.js"></script>
|
|
36
|
+
<script src='./plugin/playkit-dual-screen.js' type='text/javascript'></script>
|
|
35
37
|
</head>
|
|
36
38
|
|
|
37
39
|
<body>
|
package/demo/index.html
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="theme-color" content="#000000" />
|
|
7
|
+
<meta name="description" content="Dual-screen Plugin Demo Page" />
|
|
8
|
+
<title>Dual-screen Plugin</title>
|
|
9
|
+
<link rel="stylesheet" type="text/css" href="./style.css" />
|
|
10
|
+
<script src="https://unpkg.com/@playkit-js/kaltura-player-js@canary/dist/kaltura-ovp-player.js"></script>
|
|
11
|
+
<script src="https://unpkg.com/@playkit-js/playkit-js-kaltura-cuepoints@canary/dist/playkit-kaltura-cuepoints.js" type="text/javascript"></script>
|
|
12
|
+
<script src="https://unpkg.com/@playkit-js/playkit-js-timeline@canary/dist/playkit-timeline.js"></script>
|
|
13
|
+
<script src="../playkit-dual-screen.js"></script>
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<label for="width-selector">Player size:</label>
|
|
17
|
+
<select id="width-selector">
|
|
18
|
+
<option value="280">TINY</option>
|
|
19
|
+
<option value="380">EXTRA_SMALL</option>
|
|
20
|
+
<option value="480">SMALL</option>
|
|
21
|
+
<option value="768" selected>MEDIUM</option>
|
|
22
|
+
<option value="1024">LARGE</option>
|
|
23
|
+
<option value="1280">EXTRA_LARGE</option>
|
|
24
|
+
</select>
|
|
25
|
+
|
|
26
|
+
<script type="text/javascript">
|
|
27
|
+
document.getElementById('width-selector').addEventListener('change', function() {
|
|
28
|
+
const width = this.value + 'px';
|
|
29
|
+
document.getElementById('player-placeholder').style.width = width;
|
|
30
|
+
});
|
|
31
|
+
</script>
|
|
32
|
+
<div id="player-placeholder" style="width: 768px; aspect-ratio: 10 / 5.62"></div>
|
|
33
|
+
<script type="text/javascript">
|
|
34
|
+
const config = {
|
|
35
|
+
log: {
|
|
36
|
+
level: 'DEBUG'
|
|
37
|
+
},
|
|
38
|
+
targetId: 'player-placeholder',
|
|
39
|
+
provider: {
|
|
40
|
+
env: {
|
|
41
|
+
cdnUrl: 'https://cfvod.nvq2.ovp.kaltura.com',
|
|
42
|
+
serviceUrl: 'https://api.nvq2.ovp.kaltura.com/api_v3'
|
|
43
|
+
},
|
|
44
|
+
partnerId: 242
|
|
45
|
+
},
|
|
46
|
+
plugins: {
|
|
47
|
+
kalturaCuepoints: {},
|
|
48
|
+
timeline: {},
|
|
49
|
+
dualscreen: {}
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
const player = KalturaPlayer.setup(config);
|
|
54
|
+
player.loadMedia({ entryId: '0_oq2nevl6' });
|
|
55
|
+
</script>
|
|
56
|
+
</body>
|
|
57
|
+
</html>
|