Log in

View Full Version : Little Help / Add filter to SVSmoothFPS


pbreak
20th July 2013, 14:17
Hello, guys

Using MblockFPS you just add this code under SetMTmode and it works, now with SVSmooth i don't know which letter add before the code V = or L = ....

I'd like to know how to get this working.

Use this SVSmooth script \/

svp_scheduler=true
SetMemoryMax(1024)
LoadPlugin("C:\\Program Files (x86)\\SVP\\plugins\\svpflow1.dll")
LoadPlugin("C:\\Program Files (x86)\\SVP\\plugins\\svpflow2.dll")
SetMTMode(3,15)
V = ffdshow_source()
SetMTMode(2)
S= V.SVSuper("{scale:{up:0,down:4},gpu:1,rc:false}")
A = S.SVAnalyse("{main:{search:{coarse:{distance:-10},bad:{sad:2000}}},refine:[{thsad:250}]}")
V.SVSmoothFps(S, A, "{num:5,den:2,algo:13,mask:{cover:80,area:0,area_sharp:1.2},s cene:{blend:true, mode:0}}", url="www.svp-team.com", mt=15)
GetMTMode(false) > 0 ? distributor() : last


And add this filters \/

AssumeTFF()
Interp = SeparateFields().selecteven().EEDI2(field=1)
Deinted=TDeint(order=1,field=-1,edeint=Interp)
TFM(mode=6,order=0,PP=6,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(mode=4)


Is that possible? THanks.

Selur
20th July 2013, 14:27
svp_scheduler=true
SetMemoryMax(1024)
LoadPlugin("C:\\Program Files (x86)\\SVP\\plugins\\svpflow1.dll")
LoadPlugin("C:\\Program Files (x86)\\SVP\\plugins\\svpflow2.dll")
SetMTMode(3,15)
V = ffdshow_source()
SetMTMode(2)
V = V.AssumeTFF()
Interp = V.SeparateFields().selecteven().EEDI2(field=1)
Deinted= V.TDeint(order=1,field=-1,edeint=Interp)
V = V.TFM(mode=6,order=0,PP=6,slow=2,mChroma=true,Clip2=Deinted)
V = V.TDecimate(mode=4)
S= V.SVSuper("{scale:{up:0,down:4},gpu:1,rc:false}")
A = S.SVAnalyse("{main:{search:{coarse:{distance:-10},bad:{sad:2000}}},refine:[{thsad:250}]}")
V.SVSmoothFps(S, A, "{num:5,den:2,algo:13,mask:{cover:80,area:0,area_sharp:1.2},s cene:{blend:true, mode:0}}", url="www.svp-team.com", mt=15)
GetMTMode(false) > 0 ? distributor() : last should be the combination of the two

pbreak
20th July 2013, 15:33
Thank you, Selur.

It's working.

I do not wish to abuse of your kindness, but ... do you know how to 'fix' those fast scenes when everything gets blurry? Maybe a RemoveDirt or LSF?

Thanks anyway.

Selur
21st July 2013, 07:44
Sorry, no clue, I have never used SVSmoothFps :)