We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The parser ends the parsing when it finds a #EXT-X-ENDLIST tag but doesn't add it to the tags.
The text was updated successfully, but these errors were encountered:
This is actually not an issue.
A type needs to be set:
parser.on('m3u', function(m3u) { m3u.set('playlistType', 'VOD') })
#EXT-X-ENDLIST will then be appended correctly.
https://github.com/tedconf/node-m3u8/blob/master/test/m3u.test.js#L189
Sorry, something went wrong.
it's a workaround but according to the spec 6.3.4 in the draft an EVENT playlist may also have EXT-X-ENDLIST tag
I agree with @oferh.
EXT-X-PLAYLIST-TYPE is optional.
EXT-X-PLAYLIST-TYPE
https://tools.ietf.org/html/draft-pantos-http-live-streaming-07#section-3.3.7
The EXT-X-PLAYLIST-TYPE tag provides mutability information about the Playlist file. It applies to the entire Playlist file. It is optional.
if this PR #16 gets merged, it will take care of this issue.
No branches or pull requests
The parser ends the parsing when it finds a #EXT-X-ENDLIST tag but doesn't add it to the tags.
The text was updated successfully, but these errors were encountered: