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
The WebVTT spec says that the timesttamps should be:
A WebVTT timestamp consists of the following components, in the given order:
Optionally (required if hours is non-zero):
Two or more ASCII digits, representing the hours as a base ten integer.
Right now any hours longer than 2 digits are truncated to only include the final two digits of the hours count.
The text was updated successfully, but these errors were encountered:
slifty
added a commit
to slifty/node-webvtt
that referenced
this issue
May 12, 2022
The WebVTT spec says that the hours section of a timestamp must be "at
least 2 digits" but the parser was only accepting the first two digits
(and dropping the rest). This meant that "100:00:00" was being
interpreted as "00:00:00"
Hours can now be as long as we want
Issue osk#117 Hours timestamp should support more than 2 digits
The WebVTT spec says that the timesttamps should be:
Right now any hours longer than 2 digits are truncated to only include the final two digits of the hours count.
The text was updated successfully, but these errors were encountered: