bigscreen-player 7.1.0 → 7.1.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/{imscsubtitles-b57ed60e.js → imscsubtitles-db803024.js} +1 -1
- package/dist/esm/{legacysubtitles-b3f55608.js → legacysubtitles-57538177.js} +1 -1
- package/dist/esm/{main-52f61531.js → main-786c4f79.js} +4 -4
- package/dist/esm/main.js +1 -1
- package/dist/esm/{msestrategy-f953decf.js → msestrategy-c74884c1.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 DebugToolInstance, P as Plugins, U as Utils, D as DOMHelpers } from './main-
|
|
2
|
+
import { f as findSegmentTemplate, L as LoadUrl, a as DebugToolInstance, P as Plugins, U as Utils, D as DOMHelpers } from './main-786c4f79.js';
|
|
3
3
|
|
|
4
4
|
const SEGMENTS_BUFFER_SIZE = 3;
|
|
5
5
|
const LOAD_ERROR_COUNT_MAX = 3;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DOMHelpers, a as DebugToolInstance, P as Plugins, L as LoadUrl, T as TransportControlPosition } from './main-
|
|
1
|
+
import { D as DOMHelpers, a as DebugToolInstance, P as Plugins, L as LoadUrl, T as TransportControlPosition } from './main-786c4f79.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Safely checks if an attribute exists on an element.
|
|
@@ -5795,7 +5795,7 @@ BasicStrategy.getLiveSupport = () => LiveSupport.SEEKABLE;
|
|
|
5795
5795
|
function StrategyPicker() {
|
|
5796
5796
|
return new Promise((resolve, reject) => {
|
|
5797
5797
|
if (window.bigscreenPlayer.playbackStrategy === PlaybackStrategy.MSE) {
|
|
5798
|
-
return import('./msestrategy-
|
|
5798
|
+
return import('./msestrategy-c74884c1.js')
|
|
5799
5799
|
.then(({ default: MSEStrategy }) => resolve(MSEStrategy))
|
|
5800
5800
|
.catch(() => {
|
|
5801
5801
|
reject({ error: "strategyDynamicLoadError" });
|
|
@@ -6240,7 +6240,7 @@ function CallCallbacks(callbacks, data) {
|
|
|
6240
6240
|
}
|
|
6241
6241
|
}
|
|
6242
6242
|
|
|
6243
|
-
var version = "7.1.
|
|
6243
|
+
var version = "7.1.2";
|
|
6244
6244
|
|
|
6245
6245
|
var sourceList;
|
|
6246
6246
|
var source;
|
|
@@ -7632,7 +7632,7 @@ function Subtitles(mediaPlayer, autoStart, playbackElement, defaultStyleOpts, me
|
|
|
7632
7632
|
|
|
7633
7633
|
if (available()) {
|
|
7634
7634
|
if (useLegacySubs) {
|
|
7635
|
-
import('./legacysubtitles-
|
|
7635
|
+
import('./legacysubtitles-57538177.js')
|
|
7636
7636
|
.then(({ default: LegacySubtitles }) => {
|
|
7637
7637
|
subtitlesContainer = LegacySubtitles(mediaPlayer, autoStart, playbackElement, mediaSources, defaultStyleOpts);
|
|
7638
7638
|
callback(subtitlesEnabled);
|
|
@@ -7641,7 +7641,7 @@ function Subtitles(mediaPlayer, autoStart, playbackElement, defaultStyleOpts, me
|
|
|
7641
7641
|
Plugins.interface.onSubtitlesDynamicLoadError();
|
|
7642
7642
|
});
|
|
7643
7643
|
} else {
|
|
7644
|
-
import('./imscsubtitles-
|
|
7644
|
+
import('./imscsubtitles-db803024.js')
|
|
7645
7645
|
.then(({ default: IMSCSubtitles }) => {
|
|
7646
7646
|
subtitlesContainer = IMSCSubtitles(mediaPlayer, autoStart, playbackElement, mediaSources, defaultStyleOpts);
|
|
7647
7647
|
callback(subtitlesEnabled);
|
package/dist/esm/main.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { B as BigscreenPlayer, b as LiveSupport, c as MediaKinds, M as MediaState, g as MockBigscreenPlayer, h as PauseTriggers, i as PlaybackStrategy, j as TransferFormat, T as TransportControlPosition, W as WindowTypes } from './main-
|
|
1
|
+
export { B as BigscreenPlayer, b as LiveSupport, c as MediaKinds, M as MediaState, g as MockBigscreenPlayer, h as PauseTriggers, i as PlaybackStrategy, j as TransferFormat, T as TransportControlPosition, W as WindowTypes } from './main-786c4f79.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { W as WindowTypes, U as Utils, D as DOMHelpers, b as LiveSupport, M as MediaState, a as DebugToolInstance, P as Plugins, c as MediaKinds, d as TimeUtils, e as DynamicWindowUtils } from './main-
|
|
1
|
+
import { W as WindowTypes, U as Utils, D as DOMHelpers, b as LiveSupport, M as MediaState, a as DebugToolInstance, P as Plugins, c as MediaKinds, d as TimeUtils, e as DynamicWindowUtils } from './main-786c4f79.js';
|
|
2
2
|
import { MediaPlayer } from 'dashjs/index_mediaplayerOnly';
|
|
3
3
|
|
|
4
4
|
function filter(manifest, representationOptions) {
|