Functions Index :: J :: JointFPS
Module:
Definition:
JointFPS(string clips)
Description:
Returns the most common (ie with maximum occurence) framerate of a clip array.
Between framerates with the same occurence, the function favors those with the smaller value; for example if an array of 5 clips has fps [24,24,25,30,30] the function will return 24.
Examples:
# assuming ar is a clip array with 2 24-fps clips, 3 29.97-fps clip
# and 2 59.94-fps clips (7 clips in total):
fp = JointFPS(ar) # fp == 29.97 notes =
$notes