Suppose I have an animation here and I want to know the time length from 0:00 to 0:09 in seconds, how do I calculate it? This animation is running in 60 FPS.
9 frames at a rate of 60 frames per second is 0.15 seconds.
9 * (1 / 60) = 9 / 60 = 0.15 seconds
5 Likes
If you want to calculate it in terms of the number of frames, (x * 60) = n
with x
being the number of seconds and n
being the number of frames. One frame is equal to ~0.01667
seconds. Just multiply that number by whatever you got from the previous equation to find the total length of the clip in seconds.
2 Likes