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
We are still trying to figure out why we are getting VTT files mac classic CR line endings, and have a workaround by locally modifying files to fix the regex. But an official build would of course be better.
The text was updated successfully, but these errors were encountered:
VTT files with carriage return (CR
\r
) line endings are rejected by the parser with aParsingError.Errors.BadSignature
error.Issue seems to be the regex at
vtt.js/lib/parser/parser.js
Line 175 in 2eb1ea4
\r
case, resulting in downstream rejection because it seems like there's only one line in the vtt.Per https://www.w3.org/TR/webvtt1/#webvtt-line-terminator "A single U+000D CARRIAGE RETURN (CR) character." should be supported.
Other notes:
The text was updated successfully, but these errors were encountered: