Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fill gaps with empty frames or last frame #6518

Open
roflcoopter opened this issue Jun 21, 2024 · 2 comments
Open

Fill gaps with empty frames or last frame #6518

roflcoopter opened this issue Jun 21, 2024 · 2 comments

Comments

@roflcoopter
Copy link

What do you want to do with Hls.js?

I am trying to synchronize multiple HLS streams side by side from security cameras. They are not guaranteed to have media files for every moment in time (one camera might reboot for instance).

Is there a way to make the #EXT-X-GAP tag be treated differently than nudging the stream ahead?
I would like to either fill the gaps with black frames or simply pause the stream for the duration of the gap

Is it possible to override the handling of the #EXT-X-GAP in this way?

What have you tried so far?

I have tried adding the #EXT-X-GAP tag but the stream is nudged forward which makes the streams out of sync.

@roflcoopter roflcoopter added Needs Triage If there is a suspected stream issue, apply this label to triage if it is something we should fix. Question labels Jun 21, 2024
@robwalch
Copy link
Collaborator

It would be ideal if HLS.js could play through GAP tags. Video and Audio buffer gaps, where an alternate playlist and non-gap segment could be found, would need to be filled.

There is no simple way to insert a video frame of arbitrary length in MSE. Extending the duration of the last frame or finding an intra-frame candidate for any GAP tag situation would be very difficult.

Perhaps HLS.js could offer an option to not perform seeks over gaps? As a workaround, try listening for BUFFER_SEEK_OVER_HOLE with frag.gap === true and interrupt the seek operation by pausing and performing multiple seeks over the duration of the gap at a regular interval until the playhead makes it past the unbuffered range. If this works we could consider adding a "nudge-through-gaps" mode to handle playback advancement (provided the application or player using HLS.js can deal with the additional HTMLMediaElement playback and seeking events which we could signal via BUFFER_NUDGE_ON_GAP before each step).

The work to support #EXT-X-GAP has been tracked under #2940 if you're interested in background and past conversations on the subject.

@robwalch robwalch added Enhancement Missing Feature and removed Question Needs Triage If there is a suspected stream issue, apply this label to triage if it is something we should fix. labels Jun 22, 2024
@robwalch robwalch added this to the 1.7.0 milestone Jun 22, 2024
@roflcoopter
Copy link
Author

Thanks for the quick reply!
Understood, yes pausing the stream is an acceptable solution, will see what i can do with BUFFER_SEEK_OVER_HOLE, will report back soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants