Rob Walch
Rob Walch
[Not a Contribution](https://www.apache.org/licenses/LICENSE-2.0) > My expectation would be that the player reevaluates the bandwidth continuously, or at least somehow avoid having to complete the whole request before reevaluation and switching...
[Not a Contribution](https://www.apache.org/licenses/LICENSE-2.0) Hi @sharankumarreddy19, When you select a different audio track a number of things needs to happen: 1. Empty the audio buffer of all buffered media 2. Load...
Since the goal here is to disable `log` and `debug` we could accept a serializable value like `false` that does just that. ```js hlsConfig.debug = { log: false, /* do...
To get logs out of the worker, you'll need to work on transmuxer-worker.ts so that logs are messaged to and logged from transmuxer-interface.ts. Some care will need to be taken...
Please include sample stream and Android device info.
This doesn't seem like an HLS.js specific issue. Have you reported this issue to the Chromium team? Still need a functioning stream to reproduce the issue. Additional Android device and...
The `LevelDetails` object in `LEVEL_LOADED` has a `live` property whose value is a boolean indicating whether the stream is live or not. https://github.com/video-dev/hls.js/blob/v1.1.5/docs/API.md#leveldetails ```js hls.on(Hls.Events.LEVEL_LOADED, function (name, event) { console.log(event.details.live);...
Not a bug, just a typo and confusion on my part. I've updated my previous comment, and updated the docs (change https://github.com/video-dev/hls.js/commit/55774c243e043c5503f466f8fe416accd4ce002d) under Runtime Events to help make it clearer...
Please fill out the [Bug Report Template](https://github.com/video-dev/hls.js/issues/new?template=bug_report.md) as part of your issue, making sure to include: - HLS.js version - Test stream/page (if possible) - Steps to reproduce - Expected...
Hi @pcruiksh, ~Please create a PR that adds `networkDetails: xhr` to the error object, and update necessary TS type defs and API.md documention.~ This issue will be addressed by #4930