Topic: Made some progress with SVP, getting better results with custom script
So for the past few weeks I have tested and configured different scripts and this is my most successful one.
--MEGUI--
global threads=2
PluginPath = "D:\Desktop stuff\Desktop stuff\60 FPS\MeGui converter\tools\avisynth_plugin\"
LoadPlugin(PluginPath+"svpflow1.dll")
LoadPlugin(PluginPath+"svpflow2.dll")
LoadPlugin(PluginPath+"mvtools2.dll")
setmtmode(5,0)
<input>.ConvertToYV12()
setmtmode(2)
<crop>
setmtmode(2)
<resize>
setmtmode(2)
Import(PluginPath+"60FPS1 improved.avsi")
--File "60FPS1 improved.avsi"--
svp_flow_lib="D:\Desktop stuff\Desktop stuff\60 FPS\MeGui converter\tools\avisynth_plugin\libflowgpu.dll"
super = MSuper(hpad=255,vpad=255,pel=2,chroma=false,sharp=2,rfilter=4)
backward_vec = MAnalyse(super,blksize=16,overlap=0, isb = true,chroma=false,delta=1,truemotion=false,lambda=0,pnew=0,plevel=0,global=true,pzero=0,meander=true,trymany=false,temporal=true, search=3,searchparam=1,pelsearch=2,badSAD=1500,badrange=-24,dct=6,sadx264=0,divide=2)
forward_vec = MAnalyse(super,blksize=16,overlap=0, isb = false,chroma=false,delta=1,truemotion=false,lambda=0,pnew=0,plevel=0,global=true,pzero=0,meander=true,trymany=false,temporal=true, search=3,searchparam=1,pelsearch=2,badSAD=1500,badrange=-24,dct=6,sadx264=0,divide=2)
backward_vec2 = MRecalculate(super,backward_vec,blksize=8,overlap=0, chroma=false,truemotion=false,lambda=0,pnew=0,meander=true, search=3,searchparam=1,thSAD=1500,dct=0,sadx264=0,smooth=1,divide=0)
forward_vec2 = MRecalculate(super,forward_vec,blksize=8,overlap=0, chroma=false,truemotion=false,lambda=0,pnew=0,meander=true, search=3,searchparam=1,thSAD=1500,dct=0,sadx264=0,smooth=1,divide=0)
MSmoothFps(super,backward_vec2,forward_vec2,num=60000,den=1001,algo=13,block=false,blend=false,ml=0,sadml=53,sadgamma=1.0,gpuid=0,thSCD2=130)
--
DVD - 720x400(upsampled too 1280x720[crop black borders too reduce artifacts]) - Renders at 91 FPS/s with x264 (faster)
720 - 1280x720([crop black borders too reduce artifacts]) - Renders at 80-85 FPS/s
[Warthunder trailer at 720p@60]
https://youtu.be/IO-PWT_d-tY
720p content produces the best result but most of my content is DVD resolution or less. At this resolution the ringing/banding in highly detailed background is quite transparent when an object is moving in the video. Far less artifacts with my script then what I successfully did with SVP based scripts.
Any tips on reducing the ringing/banding, smaller px size reduces it but creates more artifacts in the process.