Seekable regions get randomly updated to values very close to the live hls playlist edge #8760
Unanswered
pawelpredki
asked this question in
Q&A
Replies: 1 comment
-
We were able to isolate the problem outside our application and as far as we can tell it appears for the latest vjs version as well. HTML:
JS:
The problem seems to be with the html5 settings, we're guessing We did the same with version 7.20.3 and with out forked version with some small changes in it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We're using vjs version 7.20.3 and we keep running into a strange issue. For live HLS playlist that contain multiple audio streams and multiple vbr video streams when the player loads the seekable region gets restricted to the very edge of the live playlist and it is impossible to seek back into the video.
Our playlists are live but they contain all the chunks going back to the very beginning of the stream:
We registered event listeners to debug this :
And what we noticed in the
SEEKABLE START
andSEEKABLE END
values is this:Initially the entire region is available but after a second it changes to an impossible region, where
start > end
. We got stuck trying to debug where those regions are set and when they are updated.As far as we can tell this only happens for multiaudio playlist when they are live. Once the end marker is in the playlist or if the audio is not separate from the video this problem doesn't occur.
Beta Was this translation helpful? Give feedback.
All reactions