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
Should I round up my frame rates when I use the fromSeconds() function?
fromSeconds()
SMPTE.fromSeconds(3600, 24, false) gives me the expected 01:00:00:00. However SMPTE.fromSeconds(3600, 23.976, false) gives me 00:59:56:09.
SMPTE.fromSeconds(3600, 24, false)
01:00:00:00
SMPTE.fromSeconds(3600, 23.976, false)
00:59:56:09
I kinda understand why, but 3600 seconds, shouldn't that be 01:00:00:00 in any frame rate?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should I round up my frame rates when I use the
fromSeconds()
function?SMPTE.fromSeconds(3600, 24, false)
gives me the expected01:00:00:00
. HoweverSMPTE.fromSeconds(3600, 23.976, false)
gives me00:59:56:09
.I kinda understand why, but 3600 seconds, shouldn't that be
01:00:00:00
in any frame rate?The text was updated successfully, but these errors were encountered: