-
Notifications
You must be signed in to change notification settings - Fork 100
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
Exception on #EXT-X-MEDIA-TIME tag #22
Comments
This still happens |
Can someone review and merge this simple PR? #45 Thanks! |
Fixed here: #50 |
Essk
added a commit
that referenced
this issue
Sep 27, 2022
Prevent non-standard tags from being erroneously matched as standard tags by enforcing the colon tag delimiter BREAKING CHANGE: Missing colon (:) tag delimiters are no longer supported Closes #22
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have a vtt playlist with non standard #EXT-X-MEDIA-TIME tag:
#EXT-X-MEDIA-TIME:0.0
The parser then tries to parse the attributes from "-TIME:0.0" probably because it somehow detects this as the #EXT-X-MEDIA tag.
This causes this exception here:
attr = /([^=]*)=(.*)/.exec(attrs[i]).slice(1);
Probably because of the unneeded '?' after the ':'
The text was updated successfully, but these errors were encountered: