When EXT-X-PLAYLIST-TYPE: EVENT, how long does the client update m3u8 files? Can this time be set? #4675
Answered
by
robwalch
classmatewu
asked this question in
Q&A
-
When the m3u8 file ext-x-playlist-type is set to event, the client needs to continuously obtain new m3u8 files. Can this interval be controlled and how? |
Beta Was this translation helpful? Give feedback.
Answered by
robwalch
Jul 27, 2022
Replies: 1 comment
-
Playlist reloading is handled here And the interval determined here hls.js/src/controller/level-helper.ts Line 435 in 85daa49 It is not configurable in the player, but rather determined by your playlist's target duration and estimated time to update, or blocking reload behavior. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
robwalch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not a Contribution
Playlist reloading is handled here
hls.js/src/controller/base-playlist-controller.ts
Line 103 in 85daa49
And the interval determined here
hls.js/src/controller/level-helper.ts
Line 435 in 85daa49
It is not configurable in the player, but rather determined by your playlist's target duration and estimated time to update, or blocking reload behavior.