hls.js 1.6.0-beta.2.0.canary.10932 → 1.6.0-beta.2.0.canary.10933
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.d.mts +4 -0
- package/dist/hls.d.ts +4 -0
- package/dist/hls.js +19 -2
- package/dist/hls.js.d.ts +4 -0
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +19 -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 +15 -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 +15 -2
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/package.json +1 -1
- package/src/controller/level-controller.ts +8 -0
- package/src/hls.ts +7 -0
package/dist/hls.light.js
CHANGED
@@ -1030,7 +1030,7 @@
|
|
1030
1030
|
// Some browsers don't allow to use bind on console object anyway
|
1031
1031
|
// fallback to default if needed
|
1032
1032
|
try {
|
1033
|
-
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.6.0-beta.2.0.canary.
|
1033
|
+
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.6.0-beta.2.0.canary.10933");
|
1034
1034
|
} catch (e) {
|
1035
1035
|
/* log fn threw an exception. All logger methods are no-ops. */
|
1036
1036
|
return createLogger();
|
@@ -19770,6 +19770,14 @@
|
|
19770
19770
|
set: function set(newLevel) {
|
19771
19771
|
this._startLevel = newLevel;
|
19772
19772
|
}
|
19773
|
+
}, {
|
19774
|
+
key: "pathways",
|
19775
|
+
get: function get() {
|
19776
|
+
if (this.steering) {
|
19777
|
+
return this.steering.pathways();
|
19778
|
+
}
|
19779
|
+
return [];
|
19780
|
+
}
|
19773
19781
|
}, {
|
19774
19782
|
key: "pathwayPriority",
|
19775
19783
|
get: function get() {
|
@@ -19980,7 +19988,7 @@
|
|
19980
19988
|
return !remuxResult.audio && !remuxResult.video && !remuxResult.text && !remuxResult.id3 && !remuxResult.initSegment;
|
19981
19989
|
}
|
19982
19990
|
|
19983
|
-
var version = "1.6.0-beta.2.0.canary.
|
19991
|
+
var version = "1.6.0-beta.2.0.canary.10933";
|
19984
19992
|
|
19985
19993
|
// ensure the worker ends up in the bundle
|
19986
19994
|
// If the worker should not be included this gets aliased to empty.js
|
@@ -23552,6 +23560,15 @@
|
|
23552
23560
|
return this.streamController.forceStartLoad;
|
23553
23561
|
}
|
23554
23562
|
|
23563
|
+
/**
|
23564
|
+
* ContentSteering pathways getter
|
23565
|
+
*/
|
23566
|
+
}, {
|
23567
|
+
key: "pathways",
|
23568
|
+
get: function get() {
|
23569
|
+
return this.levelController.pathways;
|
23570
|
+
}
|
23571
|
+
|
23555
23572
|
/**
|
23556
23573
|
* ContentSteering pathwayPriority getter/setter
|
23557
23574
|
*/
|