hls.js 1.5.14-0.canary.10555 → 1.5.14-0.canary.10559
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-demo.js +3 -2
- package/dist/hls-demo.js.map +1 -1
- package/dist/hls.js +97 -43
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +2 -3
- 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 +2 -3
- 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 +91 -43
- 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 +2 -2
- package/src/controller/eme-controller.ts +39 -19
- package/src/utils/mediakeys-helper.ts +11 -8
- package/src/utils/mp4-tools.ts +72 -27
package/dist/hls.light.js
CHANGED
@@ -494,7 +494,7 @@
|
|
494
494
|
// Some browsers don't allow to use bind on console object anyway
|
495
495
|
// fallback to default if needed
|
496
496
|
try {
|
497
|
-
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.14-0.canary.
|
497
|
+
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.14-0.canary.10559");
|
498
498
|
} catch (e) {
|
499
499
|
/* log fn threw an exception. All logger methods are no-ops. */
|
500
500
|
return createLogger();
|
@@ -1808,7 +1808,6 @@
|
|
1808
1808
|
return findBox(sinf, ['schi', 'tenc'])[0];
|
1809
1809
|
}
|
1810
1810
|
}
|
1811
|
-
logger.error("[eme] missing 'schm' box");
|
1812
1811
|
return null;
|
1813
1812
|
}
|
1814
1813
|
|
@@ -19345,7 +19344,7 @@
|
|
19345
19344
|
return !remuxResult.audio && !remuxResult.video && !remuxResult.text && !remuxResult.id3 && !remuxResult.initSegment;
|
19346
19345
|
}
|
19347
19346
|
|
19348
|
-
var version = "1.5.14-0.canary.
|
19347
|
+
var version = "1.5.14-0.canary.10559";
|
19349
19348
|
|
19350
19349
|
// ensure the worker ends up in the bundle
|
19351
19350
|
// If the worker should not be included this gets aliased to empty.js
|