hls.js 1.5.14 → 1.5.16
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 +98 -45
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +3 -5
- 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 +3 -5
- 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 +92 -45
- 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/controller/content-steering-controller.ts +1 -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.mjs
CHANGED
@@ -411,7 +411,7 @@ function enableLogs(debugConfig, id) {
|
|
411
411
|
// Some browsers don't allow to use bind on console object anyway
|
412
412
|
// fallback to default if needed
|
413
413
|
try {
|
414
|
-
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.5.
|
414
|
+
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.5.16"}`);
|
415
415
|
} catch (e) {
|
416
416
|
exportedLogger = fakeLogger;
|
417
417
|
}
|
@@ -1796,7 +1796,6 @@ function parseSinf(sinf) {
|
|
1796
1796
|
return findBox(sinf, ['schi', 'tenc'])[0];
|
1797
1797
|
}
|
1798
1798
|
}
|
1799
|
-
logger.error(`[eme] missing 'schm' box`);
|
1800
1799
|
return null;
|
1801
1800
|
}
|
1802
1801
|
|
@@ -8433,9 +8432,8 @@ class ContentSteeringController {
|
|
8433
8432
|
}
|
8434
8433
|
if (pathwayLevels.length !== levels.length) {
|
8435
8434
|
this.log(`Found ${pathwayLevels.length}/${levels.length} levels in Pathway "${this.pathwayId}"`);
|
8436
|
-
return pathwayLevels;
|
8437
8435
|
}
|
8438
|
-
return
|
8436
|
+
return pathwayLevels;
|
8439
8437
|
}
|
8440
8438
|
getLevelsForPathway(pathwayId) {
|
8441
8439
|
if (this.levels === null) {
|
@@ -19731,7 +19729,7 @@ class Hls {
|
|
19731
19729
|
* Get the video-dev/hls.js package version.
|
19732
19730
|
*/
|
19733
19731
|
static get version() {
|
19734
|
-
return "1.5.
|
19732
|
+
return "1.5.16";
|
19735
19733
|
}
|
19736
19734
|
|
19737
19735
|
/**
|