Chainik wrote:

> I have tried many syntaxes, with no result...

three posts above...


Thank you very much, Chainik. I have finally understood how to write the script, and it works fine. In fact, I am impressed with the quality of SVPflow. I was using After Effects for this purpose, but SVPflow appears to be slightly better in overall quality, faster, and so much easier to use !

May I suggest  that the basic sample given in the Avisynth SVCflow page at     http://avisynth.nl/index.php/SVPflow#Ba … nth_script       be improved by putting an example of rate change? (see the two last lines). Then people will understand immediately how to set the parameters!


Samples

Basic Avisynth script

SetMemoryMax(1024)
   LoadPlugin("svpflow1.dll")
   LoadPlugin("svpflow2.dll")
   
   threads=9
   SetMTMode(3,threads)
   # Some input here
   SetMTMode(2)
   ConvertToYV12()
   
   # All parameters set to defaults which means high quality frame doubling
   super=SVSuper("{gpu:1}")
   vectors=SVAnalyse(super, "{}")
   SVSmoothFps(super, vectors, "{}", mt=threads)
 
# Change the last line for rate change as indicated below for x3 instead of default x2
# SVSmoothFps(super, vectors, "{ rate:{num:3, den:1, algo:21 }}", mt=threads)


Еще раз спасибо и наилучшие пожелания из Франции.

2

(0 replies, posted in Using SVP)

I am stuck with how to change the rate from default 2 to 3... 

The example given in the Wiki manual works fine to double frames:


SetMemoryMax(1024)
   LoadPlugin("svpflow1.dll")
   LoadPlugin("svpflow2.dll")
   
   threads=9
   SetMTMode(3,threads)
   # Some input here
   SetMTMode(2)
   ConvertToYV12()
   
   # All parameters set to defaults which means high quality frame doubling
   super=SVSuper("{gpu:1}")
   vectors=SVAnalyse(super, "{}")
   SVSmoothFps(super, vectors, "{}", mt=threads)



But how do I get it to triple frames instead of doubling? I have tried many syntaxes, with no result...

Can anyone help?

Hi, Milardo. I am also stuck with how to simply change the rate from default 2 to 3... 

The example given in the Wiki manual works fine to double frames:


SetMemoryMax(1024)
   LoadPlugin("svpflow1.dll")
   LoadPlugin("svpflow2.dll")
   
   threads=9
   SetMTMode(3,threads)
   # Some input here
   SetMTMode(2)
   ConvertToYV12()
   
   # All parameters set to defaults which means high quality frame doubling
   super=SVSuper("{gpu:1}")
   vectors=SVAnalyse(super, "{}")
   SVSmoothFps(super, vectors, "{}", mt=threads)



But how do I get it to triple frames instead of doubling? I have tried many syntaxes, with no result...
Have you finally found out?