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
in dftt_timecode\core.py line 90:
if mm % 10 != 0 and ff in (0, drop_per_min - 1):
This is enforcing skip frame for every second which is incorrect, it should be only enforcing at the beginning of the minute. Suggest to change it to:
if mm % 10 != 0 and ss==00 and ff in (0, drop_per_min - 1):
The text was updated successfully, but these errors were encountered:
Thanks for the comment, this bug is already fixed in #2. : )
Sorry, something went wrong.
No branches or pull requests
in dftt_timecode\core.py line 90:
if mm % 10 != 0 and ff in (0, drop_per_min - 1):
This is enforcing skip frame for every second which is incorrect, it should be only enforcing at the beginning of the minute. Suggest to change it to:
if mm % 10 != 0 and ss==00 and ff in (0, drop_per_min - 1):
The text was updated successfully, but these errors were encountered: