bigscreen-player 10.0.2 → 10.0.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/{imscsubtitles-4fc7ce45.js → imscsubtitles-607796f6.js} +1 -1
- package/dist/esm/{legacysubtitles-19fdb8d3.js → legacysubtitles-83aab2c9.js} +1 -1
- package/dist/esm/{main-077c124a.js → main-0a2beb02.js} +5 -5
- package/dist/esm/main.js +1 -1
- package/dist/esm/{msestrategy-ea1348d6.js → msestrategy-33c4b839.js} +1 -1
- package/package.json +1 -1
|
@@ -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-0a2beb02.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-0a2beb02.js';
|
|
2
2
|
import 'tslib';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -5637,7 +5637,7 @@ BasicStrategy.getLiveSupport = () => LiveSupport.SEEKABLE;
|
|
|
5637
5637
|
function StrategyPicker() {
|
|
5638
5638
|
return new Promise((resolve, reject) => {
|
|
5639
5639
|
if (window.bigscreenPlayer.playbackStrategy === PlaybackStrategy.MSE) {
|
|
5640
|
-
return import('./msestrategy-
|
|
5640
|
+
return import('./msestrategy-33c4b839.js')
|
|
5641
5641
|
.then(({ default: MSEStrategy }) => resolve(MSEStrategy))
|
|
5642
5642
|
.catch((reason) => {
|
|
5643
5643
|
const error = new Error(isError(reason) ? reason.message : undefined);
|
|
@@ -6392,7 +6392,7 @@ const PauseTriggers = {
|
|
|
6392
6392
|
DEVICE: 3,
|
|
6393
6393
|
};
|
|
6394
6394
|
|
|
6395
|
-
var Version = "10.0.
|
|
6395
|
+
var Version = "10.0.3";
|
|
6396
6396
|
|
|
6397
6397
|
/* eslint-disable no-use-before-define */
|
|
6398
6398
|
|
|
@@ -6712,7 +6712,7 @@ const mockFunctions = {
|
|
|
6712
6712
|
},
|
|
6713
6713
|
customiseSubtitles() {},
|
|
6714
6714
|
renderSubtitleExample() {},
|
|
6715
|
-
|
|
6715
|
+
setAudioDescribed(value) {
|
|
6716
6716
|
audioDescribedEnabled = value;
|
|
6717
6717
|
},
|
|
6718
6718
|
isAudioDescribedEnabled() {
|
|
@@ -7570,7 +7570,7 @@ function Subtitles(mediaPlayer, autoStart, playbackElement, defaultStyleOpts, me
|
|
|
7570
7570
|
|
|
7571
7571
|
if (available()) {
|
|
7572
7572
|
if (useLegacySubs) {
|
|
7573
|
-
import('./legacysubtitles-
|
|
7573
|
+
import('./legacysubtitles-83aab2c9.js')
|
|
7574
7574
|
.then(({ default: LegacySubtitles }) => {
|
|
7575
7575
|
subtitlesContainer = LegacySubtitles(mediaPlayer, autoStart, playbackElement, mediaSources, defaultStyleOpts);
|
|
7576
7576
|
callback(subtitlesEnabled);
|
|
@@ -7579,7 +7579,7 @@ function Subtitles(mediaPlayer, autoStart, playbackElement, defaultStyleOpts, me
|
|
|
7579
7579
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7580
7580
|
});
|
|
7581
7581
|
} else {
|
|
7582
|
-
import('./imscsubtitles-
|
|
7582
|
+
import('./imscsubtitles-607796f6.js')
|
|
7583
7583
|
.then(({ default: IMSCSubtitles }) => {
|
|
7584
7584
|
subtitlesContainer = IMSCSubtitles(mediaPlayer, autoStart, playbackElement, mediaSources, defaultStyleOpts);
|
|
7585
7585
|
callback(subtitlesEnabled);
|
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-0a2beb02.js';
|
|
2
2
|
import 'tslib';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MediaPlayer } from 'dashjs/index_mediaplayerOnly';
|
|
2
|
-
import { U as Utils, b as LiveSupport, M as MediaKinds, 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, b as LiveSupport, M as MediaKinds, a as DebugTool, c as ManifestType, d as MediaState, P as Plugins, e as autoResumeAtStartOfRange, D as DOMHelpers } from './main-0a2beb02.js';
|
|
3
3
|
import 'tslib';
|
|
4
4
|
|
|
5
5
|
function filter(manifest, representationOptions) {
|