bigscreen-player 8.2.7 → 8.2.8

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.
@@ -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-f5669247.js';
2
+ import { f as findSegmentTemplate, L as LoadUrl, a as DebugToolInstance, P as Plugins, U as Utils, D as DOMHelpers } from './main-28569a69.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-f5669247.js';
1
+ import { D as DOMHelpers, a as DebugToolInstance, P as Plugins, L as LoadUrl, T as TransportControlPosition } from './main-28569a69.js';
2
2
 
3
3
  /**
4
4
  * Safely checks if an attribute exists on an element.
@@ -5937,7 +5937,7 @@ BasicStrategy.getLiveSupport = () => LiveSupport.SEEKABLE;
5937
5937
  function StrategyPicker() {
5938
5938
  return new Promise((resolve, reject) => {
5939
5939
  if (window.bigscreenPlayer.playbackStrategy === PlaybackStrategy.MSE) {
5940
- return import('./msestrategy-2c2a325b.js')
5940
+ return import('./msestrategy-5373d3ed.js')
5941
5941
  .then(({ default: MSEStrategy }) => resolve(MSEStrategy))
5942
5942
  .catch(() => {
5943
5943
  reject({ error: "strategyDynamicLoadError" });
@@ -6384,7 +6384,7 @@ function CallCallbacks(callbacks, data) {
6384
6384
  }
6385
6385
  }
6386
6386
 
6387
- var Version = "8.2.7";
6387
+ var Version = "8.2.8";
6388
6388
 
6389
6389
  var sourceList;
6390
6390
  var source;
@@ -7735,7 +7735,7 @@ function Subtitles(mediaPlayer, autoStart, playbackElement, defaultStyleOpts, me
7735
7735
 
7736
7736
  if (available()) {
7737
7737
  if (useLegacySubs) {
7738
- import('./legacysubtitles-4e08c783.js')
7738
+ import('./legacysubtitles-0d8a6c3c.js')
7739
7739
  .then(({ default: LegacySubtitles }) => {
7740
7740
  subtitlesContainer = LegacySubtitles(mediaPlayer, autoStart, playbackElement, mediaSources, defaultStyleOpts);
7741
7741
  callback(subtitlesEnabled);
@@ -7744,7 +7744,7 @@ function Subtitles(mediaPlayer, autoStart, playbackElement, defaultStyleOpts, me
7744
7744
  Plugins.interface.onSubtitlesDynamicLoadError();
7745
7745
  });
7746
7746
  } else {
7747
- import('./imscsubtitles-49d779d9.js')
7747
+ import('./imscsubtitles-9707beeb.js')
7748
7748
  .then(({ default: IMSCSubtitles }) => {
7749
7749
  subtitlesContainer = IMSCSubtitles(mediaPlayer, autoStart, playbackElement, mediaSources, defaultStyleOpts);
7750
7750
  callback(subtitlesEnabled);
package/dist/esm/main.js CHANGED
@@ -1 +1 @@
1
- export { B as BigscreenPlayer, a as DebugTool, E as EntryCategory, 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, k as isMessage, l as isMetric, m as isTrace } from './main-f5669247.js';
1
+ export { B as BigscreenPlayer, a as DebugTool, E as EntryCategory, 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, k as isMessage, l as isMetric, m as isTrace } from './main-28569a69.js';
@@ -1,5 +1,5 @@
1
1
  import { MediaPlayer } from 'dashjs/index_mediaplayerOnly';
2
- import { W as WindowTypes, U as Utils, D as DOMHelpers, b as LiveSupport, a as DebugToolInstance, M as MediaState, P as Plugins, c as MediaKinds, d as TimeUtils, e as DynamicWindowUtils } from './main-f5669247.js';
2
+ import { W as WindowTypes, U as Utils, D as DOMHelpers, b as LiveSupport, a as DebugToolInstance, M as MediaState, P as Plugins, c as MediaKinds, d as TimeUtils, e as DynamicWindowUtils } from './main-28569a69.js';
3
3
 
4
4
  function filter(manifest, representationOptions) {
5
5
  const constantFps = representationOptions.constantFps;
@@ -807,6 +807,7 @@ function MSEStrategy(mediaSources, windowType, mediaKind, playbackElement, isUHD
807
807
  mediaPlayer.off(DashJSEvents.URL_RESOLUTION_FAILED, onURLResolutionFailed);
808
808
  mediaPlayer.off(DashJSEvents.GAP_JUMP, onGapJump);
809
809
  mediaPlayer.off(DashJSEvents.GAP_JUMP_TO_END, onGapJump);
810
+ mediaPlayer.off(DashJSEvents.QUOTA_EXCEEDED, onQuotaExceeded);
810
811
 
811
812
  DOMHelpers.safeRemoveElement(mediaElement);
812
813
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigscreen-player",
3
- "version": "8.2.7",
3
+ "version": "8.2.8",
4
4
  "type": "module",
5
5
  "description": "Simplified media playback for bigscreen devices.",
6
6
  "main": "dist/esm/main.js",