bigscreen-player 10.20.0 → 10.20.2
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-f69ffa72.js → embeddedsubtitles-79dedfe5.js} +1 -1
- package/dist/esm/{imscsubtitles-295b55a2.js → imscsubtitles-3ee064c9.js} +1 -1
- package/dist/esm/{legacysubtitles-f66a92d6.js → legacysubtitles-2ca03089.js} +1 -1
- package/dist/esm/{main-cbd4fe84.js → main-f6d0ba9f.js} +5 -5
- package/dist/esm/main.js +1 -1
- package/dist/esm/{msestrategy-e4f17360.js → msestrategy-2b53716c.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-f6d0ba9f.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-f6d0ba9f.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-f6d0ba9f.js';
|
|
2
2
|
import 'tslib';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -5736,7 +5736,7 @@ BasicStrategy.getLiveSupport = () => LiveSupport.SEEKABLE;
|
|
|
5736
5736
|
function StrategyPicker() {
|
|
5737
5737
|
return new Promise((resolve, reject) => {
|
|
5738
5738
|
if (window.bigscreenPlayer.playbackStrategy === PlaybackStrategy.MSE) {
|
|
5739
|
-
return import('./msestrategy-
|
|
5739
|
+
return import('./msestrategy-2b53716c.js')
|
|
5740
5740
|
.then(({ default: MSEStrategy }) => resolve(MSEStrategy))
|
|
5741
5741
|
.catch((reason) => {
|
|
5742
5742
|
const error = new Error(isError(reason) ? reason.message : undefined);
|
|
@@ -6569,7 +6569,7 @@ const PauseTriggers = {
|
|
|
6569
6569
|
DEVICE: 3,
|
|
6570
6570
|
};
|
|
6571
6571
|
|
|
6572
|
-
var Version = "10.20.
|
|
6572
|
+
var Version = "10.20.2";
|
|
6573
6573
|
|
|
6574
6574
|
/* eslint-disable no-use-before-define */
|
|
6575
6575
|
|
|
@@ -7761,7 +7761,7 @@ function Subtitles(
|
|
|
7761
7761
|
|
|
7762
7762
|
if (available()) {
|
|
7763
7763
|
if (useLegacySubs) {
|
|
7764
|
-
import('./legacysubtitles-
|
|
7764
|
+
import('./legacysubtitles-2ca03089.js')
|
|
7765
7765
|
.then(({ default: LegacySubtitles }) => {
|
|
7766
7766
|
subtitlesContainer = LegacySubtitles(mediaPlayer, playbackElement, mediaSources, {
|
|
7767
7767
|
alwaysOnTop,
|
|
@@ -7775,7 +7775,7 @@ function Subtitles(
|
|
|
7775
7775
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7776
7776
|
});
|
|
7777
7777
|
} else if (embeddedSubs) {
|
|
7778
|
-
import('./embeddedsubtitles-
|
|
7778
|
+
import('./embeddedsubtitles-79dedfe5.js')
|
|
7779
7779
|
.then(({ default: EmbeddedSubtitles }) => {
|
|
7780
7780
|
subtitlesContainer = EmbeddedSubtitles(mediaPlayer, playbackElement, {
|
|
7781
7781
|
autoStart,
|
|
@@ -7788,7 +7788,7 @@ function Subtitles(
|
|
|
7788
7788
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7789
7789
|
});
|
|
7790
7790
|
} else {
|
|
7791
|
-
import('./imscsubtitles-
|
|
7791
|
+
import('./imscsubtitles-3ee064c9.js')
|
|
7792
7792
|
.then(({ default: IMSCSubtitles }) => {
|
|
7793
7793
|
subtitlesContainer = IMSCSubtitles(mediaPlayer, playbackElement, mediaSources, {
|
|
7794
7794
|
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-f6d0ba9f.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, d as MediaState, P as Plugins, 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, d as MediaState, P as Plugins, e as autoResumeAtStartOfRange, D as DOMHelpers } from './main-f6d0ba9f.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.20.
|
|
3
|
+
"version": "10.20.2",
|
|
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-19",
|
|
67
67
|
"smp-imsc": "github:bbc/imscJS#v1.0.11"
|
|
68
68
|
},
|
|
69
69
|
"repository": {
|