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.js +7 -2
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +7 -2
- package/dist/hls.light.js.map +1 -1
- package/dist/hls.light.min.js +1 -1
- package/dist/hls.light.min.js.map +1 -1
- package/dist/hls.light.mjs +7 -2
- package/dist/hls.light.mjs.map +1 -1
- package/dist/hls.min.js +1 -1
- package/dist/hls.min.js.map +1 -1
- package/dist/hls.mjs +7 -2
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/dist/hls.worker.js.map +1 -1
- package/package.json +1 -1
- package/src/demux/id3.ts +6 -0
package/dist/hls.js
CHANGED
|
@@ -546,7 +546,7 @@
|
|
|
546
546
|
// Some browsers don't allow to use bind on console object anyway
|
|
547
547
|
// fallback to default if needed
|
|
548
548
|
try {
|
|
549
|
-
exportedLogger.log("Debug logs enabled for \"" + id + "\" in hls.js version " + "1.4.
|
|
549
|
+
exportedLogger.log("Debug logs enabled for \"" + id + "\" in hls.js version " + "1.4.14");
|
|
550
550
|
} catch (e) {
|
|
551
551
|
exportedLogger = fakeLogger;
|
|
552
552
|
}
|
|
@@ -1734,6 +1734,11 @@
|
|
|
1734
1734
|
};
|
|
1735
1735
|
var decoder;
|
|
1736
1736
|
function getTextDecoder() {
|
|
1737
|
+
// On Play Station 4, TextDecoder is defined but partially implemented.
|
|
1738
|
+
// Manual decoding option is preferable
|
|
1739
|
+
if (navigator.userAgent.includes('PlayStation 4')) {
|
|
1740
|
+
return;
|
|
1741
|
+
}
|
|
1737
1742
|
if (!decoder && typeof self.TextDecoder !== 'undefined') {
|
|
1738
1743
|
decoder = new self.TextDecoder('utf-8');
|
|
1739
1744
|
}
|
|
@@ -26347,7 +26352,7 @@
|
|
|
26347
26352
|
* Get the video-dev/hls.js package version.
|
|
26348
26353
|
*/
|
|
26349
26354
|
function get() {
|
|
26350
|
-
return "1.4.
|
|
26355
|
+
return "1.4.14";
|
|
26351
26356
|
}
|
|
26352
26357
|
}, {
|
|
26353
26358
|
key: "Events",
|