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
11:02:15:18, 11-hour, 02-minute, 15-second, 18-millisecond correct way: 11:02:15:18=11x24x3600x1000 + 2x3600x1000 + 15x1000 + 18?
# Compute Timings (This is assuming that audio timing is given in 30fps) audio_start_time_in_thirds = ( audio_start_time[0] * 216000 + audio_start_time[1] * 3600 + audio_start_time[2] * 60 + audio_start_time[3] * 2 ) anim_start_time_in_thirds = ( anim_start_time[0] * 216000 + anim_start_time[1] * 3600 + anim_start_time[2] * 60 + anim_start_time[3] * 1 ) acting_start_time_in_thirds = ( acting_start_time[0] * 216000 + acting_start_time[1] * 3600 + acting_start_time[2] * 60 + acting_start_time[3] * 1 ) acting_end_time_in_thirds = ( acting_end_time[0] * 216000 + acting_end_time[1] * 3600 + acting_end_time[2] * 60 + acting_end_time[3] * 1 )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
11:02:15:18, 11-hour, 02-minute, 15-second, 18-millisecond
correct way: 11:02:15:18=11x24x3600x1000 + 2x3600x1000 + 15x1000 + 18?
The text was updated successfully, but these errors were encountered: