Log in

View Full Version : Software That Will Tell Me the Exact FPS


blazerqb11
13th June 2009, 11:45
Every program I've gotten my hands gives me a floating point number for the FPS(at least as far as I can tell). The problem with this is that you can't tell the difference between 23.976 and 24000/1001(23.9760239760...) FPS. Does anyone know of any program that will report the FPS as a ratio or a more exact number?

scharfis_brain
13th June 2009, 12:05
avisynth can tell you frameratenumerator and frameratedenominator as well as simple framerate with decimal point

blazerqb11
13th June 2009, 14:24
avisynth can tell you frameratenumerator and frameratedenominator as well as simple framerate with decimal point

How??

rack04
13th June 2009, 14:34
How??

Add these lines to your avs file.

WriteFile("[PATH\]info.txt","FrameRateNumerator")
WriteFile("[PATH\]info.txt","FrameRateDenominator")

blazerqb11
13th June 2009, 14:39
Add these lines to your avs file.

WriteFile("[PATH\]info.txt","FrameRateNumerator")
WriteFile("[PATH\]info.txt","FrameRateDenominator")

Awesome, thanks.(I knew I had a weird frame rate here...)

Just out of curiosity, is there a way to have AviSynth overlay it on the video?

buzzqw
13th June 2009, 14:56
use subtitle fuction

BHH

blazerqb11
13th June 2009, 15:20
use subtitle fuction

BHH

Hmm, but how do you get the Subtitle function to see the actual numerator and denominator as text?

J_Darnley
14th June 2009, 13:35
With the string() function:
Subtitle( string(FrameRateNumerator)+"/"+string(FrameRateDenominator) )

blazerqb11
14th June 2009, 13:57
With the string() function:
Subtitle( string(FrameRateNumerator)+"/"+string(FrameRateDenominator) )

Wow, that is cool. Did I mention how much I love this forum. Thanks for the help everyone.