Скорее открутил, скрипт от амд-недобука на А6. Из отличий от оригинала: указан vectors:2 (параметр от по идее 1 недо-алгоритма), mode:1 - по умолчанию mode:3 стоит, и похоже этот режим стирает оригинальные кадры
# This script was generated by SVP 4 Manager.
# Check https://www.svp-team.com for more details.
fps=60#1..10 - 1..10X,>10 - target FPS
SetMemoryMax(2700)
global threads=#CPUS * 2 - 1
LoadPlugin("svpflow1.dll")
LoadPlugin("svpflow2.dll")
SetFilterMTMode("DEFAULT_MT_MODE",2)
SetFilterMTMode("SVSuper",1)
SetFilterMTMode("SVAnalyse",1)
SetFilterMTMode("potplayer_source",3)
potplayer_source()
fps <= 10 ? eval("""rate = "num:"+String(fps)+",den:1" """) : eval(""" rate = "num:"+String(fps)+",den:1,abs:true" """)
global source_width = width
global source_height = height
global crop_string = ""
global resize_string = ""
global super_params = "{pel:1,scale:{up:0},gpu:1,full:false,rc:true}"
global analyse_params = "{vectors:2,block:{w:32,overlap:0},main:{search:{type:1,coarse:{distance:-8,bad:{range:0},width:530},distance:0}}}"
global smoothfps_params = "{gpuid:11,rate:{"+rate+"},algo:13,scene:{mode:1}}"
global demo_mode=0
global stereo_type=0
########## BEGIN OF base.avs ##########
# This file is a part of SmoothVideo Project (SVP) ver.4
# This is NOT the full AVS script, all used variables are defined via
# JScript code that generates the full script text.
function interpolate(clip src)
{
input = crop_string=="" ? src : eval("src."+crop_string)
input = resize_string=="" ? input : eval("input."+resize_string)
#MT-MODE-1 #do not remove this line!
super=SVSuper(input, super_params)
vectors=SVAnalyse(super, analyse_params, src=input)
smooth=SVSmoothFps(input, super, vectors, smoothfps_params, mt=threads, src=src)
#MT-MODE-2 #do not remove this line!
return demo_mode==0 ? smooth : demo(input,smooth)
}
input=last
stereo_type==0 ? eval(""" interpolate(input)
""") : stereo_type==1 ? eval("""
lf = interpolate(input.crop(0,0,input.width/2,0))
rf = interpolate(input.crop(input.width/2,0,0,0))
StackHorizontal(lf, rf)
""") : stereo_type==2 ? Eval("""
lf = interpolate(input.crop(0,0,0,input.height/2))
rf = interpolate(input.crop(0,input.height/2,0,0))
StackVertical(lf, rf)""") : input
########### END OF base.avs ###########
Prefetch(threads)