ApparentFPS
Abstract | |
---|---|
Author | StainlessS |
Version | 0.01 |
Download | Doom9.org |
Category | External filters |
License | GPLv2 |
Discussion | Doom9.org |
Contents |
Description
Shows underlying framerate where a clip has had many duplicates inserted, easier than counting unique frames.
Requirements
- AviSynth v2.58 or v2.6
- progressive
- Supported color formats: RGB24, RGB32, YUY2, YV12, *YV16, *YV24, *YV411, *Y8
- * Not available in AviSynth 2.5.8.
Syntax and Parameters
- ApparentFPS (clip clp, float DupeThresh, float FrameRate, int Samples, float ChromaWeight, string Prefix, bool Show, bool Verbose, bool Debug)
- clp =
- Input clip.
- float DupeThresh = 0.5
- (Greater than 0.0), suggest 0.5 -> 1.0. FrameDifference below or equal to this is a dupe.
- float FrameRate = clp.FrameRate
- FrameRate of clp. Probably of no great use, just use default.
- int Samples = Round(FrameRate)
- (1 or more). Min Frames to sample for underlying framerate detection. Suggest as FrameRate.
- float ChromaWeight = 1.0/3.0
- (0.0 -> 1.0). YUV Only. Suggest 1.0/3.0 -> 1.0/2.0. (Use 0.0 for GreyScale YUV).
- string Prefix = ""
- Prefix for returned Local vars. "" = None returned.
- bool Show = true
- If true, show Info
- bool Verbose = true
- If true, show additional info, Sequence as binary digits
- bool Debug = true
- Not of any great use.
- clp =
Function samples over Samples frames, and shows instantaneous ApparentFPS and MaxApparentFPS, the real and perhaps most useful result is MaxApparentFPS.
If Prefix = "" (Default) then does not return any info Local vars. When set to eg "P_" will set Local P_ApparentFPS and P_MaxApparentFPS as Float. Also returns Locals P_MinAboveDupeDif, P_MaxBelowDupeDif and P_CurrentDif which may assist in choosing DupeThresh, they are min and max values so far, and difference between current and previous frame. P_MinAboveDupeDif is the difference to previous frame of the frame which has lowest difference that what considered NOT a dupe (above DupeThresh), MaxBelowDupeDif max difference of frame that WAS considered a dupe (below DupeThresh). Ideally in a clip containing duplicates, there would be a distinct gap between these two above/below dup dif values with DupeThresh somewhere in between.
Can switch Off metrics (Show=False), and set eg Prefix = "P_" to return Locals P_ApparentFPS and P_MaxApparentFPS with rough instantaneous estimate of current underlying framerate and maximum underlying framerate detected so far. NOTE, ApparentFPS can range from 0.0 in static scene (can be measure of how 'active' a scene is). 'Verbose' (Default True) shows additional info, a string of 1's and 0's showing duplicate and unique frames. Also shown in info is the Unique frame count for the current Sample spread (which will be reduced at either end of clip), current ApparentFPS is calculated as (FrameRate * UniqueFrameCount / CurrentSampleSpread), so where UniqueFrameCount == CurrentSampleSpread, the result is FrameRate, However, if CurrentSampleSpread is reduced due to being near clip ends, then current ApparentFPS will NOT be assigned to P_MaxApparentFPS even where greater than current P_MaxApparentFPS.
The rest should be pretty straight forward.
Examples
## This is some example code. Avisource("example.avi") ExampleFilter(blah=true)
## This is another example. Avisource("example.avi") ExampleFilter(blah=false)
Back to External Filters ←