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
If I'm not incorrect I think this part: /^(?:[0-1][0-9]|2[0-3])(:|;)(?:[0-5][0-9])\1(?:[0-5][0-9])(:|;)(?:[0-2][0-9])$/.test(timecode);
should be changed to: /^(?:[0-1][0-9]|2[0-3])(:|;)(?:[0-5][0-9])\1(?:[0-5][0-9])(:|;)(?:[0-5][0-9])$/.test(timecode);
to support frame rates from 30 and over.
Or make that value dynamic based on frame rate to be even more precise.
Thanks again!
The text was updated successfully, but these errors were encountered:
Hey!
Thanks for a great library!
If I'm not incorrect I think this part:
/^(?:[0-1][0-9]|2[0-3])(:|;)(?:[0-5][0-9])\1(?:[0-5][0-9])(:|;)(?:[0-2][0-9])$/.test(timecode);
should be changed to:
/^(?:[0-1][0-9]|2[0-3])(:|;)(?:[0-5][0-9])\1(?:[0-5][0-9])(:|;)(?:[0-5][0-9])$/.test(timecode);
to support frame rates from 30 and over.
Or make that value dynamic based on frame rate to be even more precise.
Thanks again!
The text was updated successfully, but these errors were encountered: