bigscreen-player 10.20.2 → 10.20.3
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-79dedfe5.js → embeddedsubtitles-f2c3a0bb.js} +1 -1
- package/dist/esm/{imscsubtitles-3ee064c9.js → imscsubtitles-e9bc9036.js} +1 -1
- package/dist/esm/{legacysubtitles-2ca03089.js → legacysubtitles-db7e223f.js} +1 -1
- package/dist/esm/{main-f6d0ba9f.js → main-3682e987.js} +6 -7
- package/dist/esm/main.js +1 -1
- package/dist/esm/{msestrategy-2b53716c.js → msestrategy-f200a1d9.js} +1 -1
- package/package.json +1 -1
|
@@ -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-3682e987.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-3682e987.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-3682e987.js';
|
|
2
2
|
import 'tslib';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -960,8 +960,7 @@ function LegacyPlayerAdapter(mediaSources, playbackElement, isUHD, player) {
|
|
|
960
960
|
const manifestType = mediaSources.time().manifestType;
|
|
961
961
|
|
|
962
962
|
const setSourceOpts = {
|
|
963
|
-
disableSentinels:
|
|
964
|
-
!!isUHD && manifestType === ManifestType.DYNAMIC && window.bigscreenPlayer?.overrides?.liveUhdDisableSentinels,
|
|
963
|
+
disableSentinels: false,
|
|
965
964
|
disableSeekSentinel: !!window.bigscreenPlayer?.overrides?.disableSeekSentinel,
|
|
966
965
|
};
|
|
967
966
|
|
|
@@ -5736,7 +5735,7 @@ BasicStrategy.getLiveSupport = () => LiveSupport.SEEKABLE;
|
|
|
5736
5735
|
function StrategyPicker() {
|
|
5737
5736
|
return new Promise((resolve, reject) => {
|
|
5738
5737
|
if (window.bigscreenPlayer.playbackStrategy === PlaybackStrategy.MSE) {
|
|
5739
|
-
return import('./msestrategy-
|
|
5738
|
+
return import('./msestrategy-f200a1d9.js')
|
|
5740
5739
|
.then(({ default: MSEStrategy }) => resolve(MSEStrategy))
|
|
5741
5740
|
.catch((reason) => {
|
|
5742
5741
|
const error = new Error(isError(reason) ? reason.message : undefined);
|
|
@@ -6569,7 +6568,7 @@ const PauseTriggers = {
|
|
|
6569
6568
|
DEVICE: 3,
|
|
6570
6569
|
};
|
|
6571
6570
|
|
|
6572
|
-
var Version = "10.20.
|
|
6571
|
+
var Version = "10.20.3";
|
|
6573
6572
|
|
|
6574
6573
|
/* eslint-disable no-use-before-define */
|
|
6575
6574
|
|
|
@@ -7761,7 +7760,7 @@ function Subtitles(
|
|
|
7761
7760
|
|
|
7762
7761
|
if (available()) {
|
|
7763
7762
|
if (useLegacySubs) {
|
|
7764
|
-
import('./legacysubtitles-
|
|
7763
|
+
import('./legacysubtitles-db7e223f.js')
|
|
7765
7764
|
.then(({ default: LegacySubtitles }) => {
|
|
7766
7765
|
subtitlesContainer = LegacySubtitles(mediaPlayer, playbackElement, mediaSources, {
|
|
7767
7766
|
alwaysOnTop,
|
|
@@ -7775,7 +7774,7 @@ function Subtitles(
|
|
|
7775
7774
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7776
7775
|
});
|
|
7777
7776
|
} else if (embeddedSubs) {
|
|
7778
|
-
import('./embeddedsubtitles-
|
|
7777
|
+
import('./embeddedsubtitles-f2c3a0bb.js')
|
|
7779
7778
|
.then(({ default: EmbeddedSubtitles }) => {
|
|
7780
7779
|
subtitlesContainer = EmbeddedSubtitles(mediaPlayer, playbackElement, {
|
|
7781
7780
|
autoStart,
|
|
@@ -7788,7 +7787,7 @@ function Subtitles(
|
|
|
7788
7787
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7789
7788
|
});
|
|
7790
7789
|
} else {
|
|
7791
|
-
import('./imscsubtitles-
|
|
7790
|
+
import('./imscsubtitles-e9bc9036.js')
|
|
7792
7791
|
.then(({ default: IMSCSubtitles }) => {
|
|
7793
7792
|
subtitlesContainer = IMSCSubtitles(mediaPlayer, playbackElement, mediaSources, {
|
|
7794
7793
|
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-3682e987.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-3682e987.js';
|
|
3
3
|
import 'tslib';
|
|
4
4
|
|
|
5
5
|
function filter(manifest, representationOptions) {
|