hls.js 1.4.13 → 1.4.14

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/hls.light.js CHANGED
@@ -515,7 +515,7 @@
515
515
  // Some browsers don't allow to use bind on console object anyway
516
516
  // fallback to default if needed
517
517
  try {
518
- exportedLogger.log("Debug logs enabled for \"" + id + "\" in hls.js version " + "1.4.13");
518
+ exportedLogger.log("Debug logs enabled for \"" + id + "\" in hls.js version " + "1.4.14");
519
519
  } catch (e) {
520
520
  exportedLogger = fakeLogger;
521
521
  }
@@ -1539,6 +1539,11 @@
1539
1539
  };
1540
1540
  var decoder;
1541
1541
  function getTextDecoder() {
1542
+ // On Play Station 4, TextDecoder is defined but partially implemented.
1543
+ // Manual decoding option is preferable
1544
+ if (navigator.userAgent.includes('PlayStation 4')) {
1545
+ return;
1546
+ }
1542
1547
  if (!decoder && typeof self.TextDecoder !== 'undefined') {
1543
1548
  decoder = new self.TextDecoder('utf-8');
1544
1549
  }
@@ -19316,7 +19321,7 @@
19316
19321
  * Get the video-dev/hls.js package version.
19317
19322
  */
19318
19323
  function get() {
19319
- return "1.4.13";
19324
+ return "1.4.14";
19320
19325
  }
19321
19326
  }, {
19322
19327
  key: "Events",