View Single Post
Old 23rd July 2018, 22:11   #12  |  Link
lansing
Registered User
 
Join Date: Sep 2006
Posts: 1,657
Quote:
Originally Posted by bradwiggo View Post
the 3.1.7 version of what, svpflow?

Also, do you know how to use the script that StainlessS posted, as I don't know how to set the input video.
svp 3.1, it's an older version. It's svp 4 now.

This is from the svpflow sample script, and this is all the parameter description:

Code:
SetMemoryMax(1024)

LoadPlugin("svpflow1.dll")
LoadPlugin("svpflow2.dll")

threads=9

SetFilterMTMode("DEFAULT_MT_MODE",2)
SetFilterMTMode("DirectShowSource",3)
SetFilterMTMode("SVSuper",1)
SetFilterMTMode("SVAnalyse",1)
SetFilterMTMode("SVSmoothFps",1)

DirectShowSource("path\to\video.avi")
ConvertToYV12()

super_params="{pel:2,gpu:1}"

analyse_params="""{block:{w:32,h:32}, 
	main:{search:{coarse:{distance:-10}}},
	refine:[{thsad:200}]}"""

smoothfps_params="{rate:{num:5,den:2},algo:2,cubic:1,light:{aspect:1.33}}"

super = SVSuper(super_params)
vectors = SVAnalyse(super, analyse_params)

SVSmoothFps(super, vectors, smoothfps_params, mt=threads)

Prefetch(threads)
Change "algo" to 1 or 2 for no blending.
lansing is offline   Reply With Quote