-
We recently encountered a stream stalling issue on Tizen 2019, Tizen 2018 and LG 2019. The issue only happens when the stream is switching from a SSAI ads to the main content and We have been looking into almost everywhere in the codebase: Even tho it fixes the issue, we don't really have a clear understanding of what causes this issue. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
All that enabling |
Beta Was this translation helpful? Give feedback.
All that enabling
liveDurationInfinity
does is prevent HLS.js from setting MediaSourceduration
. Instead it updatesseekable
TimeRanges. This makes the HTMLMediaElement interface for Live playback match that of Safari wherevideo.duration
isInfinity
while playing a live HLS stream, andvideo.seekable.start(0)
andvideo.seekable.end(0)
match the sliding playlist window available for playback.