bigscreen-player 10.17.1 → 10.18.0
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/dist/esm/{embeddedsubtitles-f2fc7a37.js → embeddedsubtitles-4a1d9b28.js} +1 -1
- package/dist/esm/{imscsubtitles-dbc289bc.js → imscsubtitles-d7839115.js} +1 -1
- package/dist/esm/{legacysubtitles-df3bbfee.js → legacysubtitles-873c21e0.js} +1 -1
- package/dist/esm/{main-052c3a5e.js → main-77218006.js} +5 -5
- package/dist/esm/main.js +1 -1
- package/dist/esm/{msestrategy-3f18d6e3.js → msestrategy-0dc4e53f.js} +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { fromXML, generateISD, renderHTML } from 'smp-imsc';
|
|
2
|
-
import { U as Utils, a as DebugTool, P as Plugins, D as DOMHelpers } from './main-
|
|
2
|
+
import { U as Utils, a as DebugTool, P as Plugins, D as DOMHelpers } from './main-77218006.js';
|
|
3
3
|
import 'tslib';
|
|
4
4
|
|
|
5
5
|
function EmbeddedSubtitles(mediaPlayer, parentElement, { autoStart = false, defaultStyleOpts = {} } = {}) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { fromXML, generateISD, renderHTML } from 'smp-imsc';
|
|
2
|
-
import { f as findSegmentTemplate, L as LoadUrl, a as DebugTool, P as Plugins, U as Utils, D as DOMHelpers } from './main-
|
|
2
|
+
import { f as findSegmentTemplate, L as LoadUrl, a as DebugTool, P as Plugins, U as Utils, D as DOMHelpers } from './main-77218006.js';
|
|
3
3
|
import 'tslib';
|
|
4
4
|
|
|
5
5
|
const SEGMENTS_BUFFER_SIZE = 3;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DOMHelpers, a as DebugTool, P as Plugins, L as LoadUrl, T as TransportControlPosition } from './main-
|
|
1
|
+
import { D as DOMHelpers, a as DebugTool, P as Plugins, L as LoadUrl, T as TransportControlPosition } from './main-77218006.js';
|
|
2
2
|
import 'tslib';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -5710,7 +5710,7 @@ BasicStrategy.getLiveSupport = () => LiveSupport.SEEKABLE;
|
|
|
5710
5710
|
function StrategyPicker() {
|
|
5711
5711
|
return new Promise((resolve, reject) => {
|
|
5712
5712
|
if (window.bigscreenPlayer.playbackStrategy === PlaybackStrategy.MSE) {
|
|
5713
|
-
return import('./msestrategy-
|
|
5713
|
+
return import('./msestrategy-0dc4e53f.js')
|
|
5714
5714
|
.then(({ default: MSEStrategy }) => resolve(MSEStrategy))
|
|
5715
5715
|
.catch((reason) => {
|
|
5716
5716
|
const error = new Error(isError(reason) ? reason.message : undefined);
|
|
@@ -6544,7 +6544,7 @@ const PauseTriggers = {
|
|
|
6544
6544
|
DEVICE: 3,
|
|
6545
6545
|
};
|
|
6546
6546
|
|
|
6547
|
-
var Version = "10.
|
|
6547
|
+
var Version = "10.18.0";
|
|
6548
6548
|
|
|
6549
6549
|
/* eslint-disable no-use-before-define */
|
|
6550
6550
|
|
|
@@ -7736,7 +7736,7 @@ function Subtitles(
|
|
|
7736
7736
|
|
|
7737
7737
|
if (available()) {
|
|
7738
7738
|
if (useLegacySubs) {
|
|
7739
|
-
import('./legacysubtitles-
|
|
7739
|
+
import('./legacysubtitles-873c21e0.js')
|
|
7740
7740
|
.then(({ default: LegacySubtitles }) => {
|
|
7741
7741
|
subtitlesContainer = LegacySubtitles(mediaPlayer, playbackElement, mediaSources, {
|
|
7742
7742
|
alwaysOnTop,
|
|
@@ -7750,7 +7750,7 @@ function Subtitles(
|
|
|
7750
7750
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7751
7751
|
});
|
|
7752
7752
|
} else if (embeddedSubs) {
|
|
7753
|
-
import('./embeddedsubtitles-
|
|
7753
|
+
import('./embeddedsubtitles-4a1d9b28.js')
|
|
7754
7754
|
.then(({ default: EmbeddedSubtitles }) => {
|
|
7755
7755
|
subtitlesContainer = EmbeddedSubtitles(mediaPlayer, playbackElement, {
|
|
7756
7756
|
autoStart,
|
|
@@ -7763,7 +7763,7 @@ function Subtitles(
|
|
|
7763
7763
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7764
7764
|
});
|
|
7765
7765
|
} else {
|
|
7766
|
-
import('./imscsubtitles-
|
|
7766
|
+
import('./imscsubtitles-d7839115.js')
|
|
7767
7767
|
.then(({ default: IMSCSubtitles }) => {
|
|
7768
7768
|
subtitlesContainer = IMSCSubtitles(mediaPlayer, playbackElement, mediaSources, {
|
|
7769
7769
|
alwaysOnTop,
|
package/dist/esm/main.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { B as BigscreenPlayer, a as DebugTool, E as EntryCategory, b as LiveSupport, c as ManifestType, M as MediaKinds, d as MediaState, g as MockBigscreenPlayer, h as PauseTriggers, i as PlaybackStrategy, k as Timeline, j as TransferFormat, T as TransportControlPosition, W as WindowTypes, l as isMessage, m as isMetric, n as isTrace } from './main-
|
|
1
|
+
export { B as BigscreenPlayer, a as DebugTool, E as EntryCategory, b as LiveSupport, c as ManifestType, M as MediaKinds, d as MediaState, g as MockBigscreenPlayer, h as PauseTriggers, i as PlaybackStrategy, k as Timeline, j as TransferFormat, T as TransportControlPosition, W as WindowTypes, l as isMessage, m as isMetric, n as isTrace } from './main-77218006.js';
|
|
2
2
|
import 'tslib';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MediaPlayer } from 'dashjs/index';
|
|
2
|
-
import { U as Utils, M as MediaKinds, b as LiveSupport, a as DebugTool, c as ManifestType, P as Plugins, d as MediaState, e as autoResumeAtStartOfRange, D as DOMHelpers } from './main-
|
|
2
|
+
import { U as Utils, M as MediaKinds, b as LiveSupport, a as DebugTool, c as ManifestType, P as Plugins, d as MediaState, e as autoResumeAtStartOfRange, D as DOMHelpers } from './main-77218006.js';
|
|
3
3
|
import 'tslib';
|
|
4
4
|
|
|
5
5
|
function filter(manifest, representationOptions) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigscreen-player",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.18.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Simplified media playback for bigscreen devices.",
|
|
6
6
|
"main": "dist/esm/main.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"typescript-eslint": "7.2.0"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"dashjs": "github:bbc/dash.js#smp-v4.7.3-
|
|
66
|
+
"dashjs": "github:bbc/dash.js#smp-v4.7.3-15",
|
|
67
67
|
"smp-imsc": "github:bbc/imscJS#v1.0.11"
|
|
68
68
|
},
|
|
69
69
|
"repository": {
|