You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 8, 2024. It is now read-only.
When decoding a MediaPlaylist, and then reencoding it with a window size of zero. No segments are in the resulting file.
I traced it down to a the for loop inside Encode that loops the Segments, it currently checks i < p.winsize. Which works for a sliding playlist, but where VOD is supposed to set winsize to zero, it results in no segments being printed.
I was able to get rid of the issue by changing the for loop condition to be i <= p.winsize.. but I'm not sure if that effects live playlists in a poor way.