Rob Walch

Results 617 comments of Rob Walch

With v1.5 and up, if you want to retry on 4xx errors you need to configure a custom `fragLoadPolicy` with a `shouldRetry` callback in the `errorRetry` block (added with #5762):...

The latest version is v1.6.2. Use this version or later with a retry handler. Please include the config and handler in your response.

> Additionally, I’ve observed that the retry count in the shouldRetry function is a cumulative count of fragment errors, not per-fragment. Why is the retry count cumulative instead of being...

Hi @vkaswin, In your example, all network errors are configured to retry once: > ``` > "maxNumRetry": 1, > "shouldRetry" : function(retryConfig, retryCount, isTimeout, response, retry) { > return retryCount...

Conversation regarding this issue posted in PR: https://github.com/video-dev/hls.js/pull/7280#issuecomment-2913496418

> How can we prevent HLS from automatically switching quality levels and avoid enabling autoLevelEnabled? This was solved with #7280's `preserveManualLevelOnError`. > Could you please check and help me resolve...

Hi @jeffsf, > I'm possibly misinterpreting things, but it isn't clear to me that `// Playback further than one target duration from target can be considered DVR playback.` I may...