thanks, but in the Manual , it is written that
if value of NewNum=> 0 - Automatic output framerate then If the input framerate is 25FPS, output 50FPS
i tried with 0 using the following script (same as in subjunk article)
Setmemorymax(512)
SetMTMode(3,4)
PluginPath="C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\"
LoadPlugin(PluginPath+"svpflow1.dll")
LoadPlugin(PluginPath+"svpflow2.dll")
Import(PluginPath+"InterFrame2.avsi")
AVISource("C:\Desktop\1080_25p.avi", audio=false).ConvertToYV12()
SetMTMode(2)
#deinterlace
#crop
#denoise
#resize
InterFrame(NewNum=0, NewDen=0, Cores=4)
--> in the above case i get 6 times increase in frame rate i-e: if original # of frame= 125 (for 25p video) then after conversion i get # of frame = 750(for 50p)
which is wrong as after conversion # of frame for 50p video should be 250(125 original+125 interpolated) frames.
i also tried with the case
InterFrame(NewNum=5, NewDen=1, Cores=4) and in this case i am also getting wrong frames number (after conversion for 50p i am getting less frames (60 frames))
please let me know why i am not getting the desired frame number (i.e 250 frames after the conversion from 25p to 50p)