SetMemoryMax(1536)
global threads=7
LoadPlugin("C:\Program Files (x86)\SVP 4\plugins\svpflow1.dll")
LoadPlugin("C:\Program Files (x86)\SVP 4\plugins\svpflow2.dll")
LoadPlugin("C:\Windows\SysWOW64\ffms2.dll")
SetMTMode(3,threads)
SetMTMode(2)
FFVideoSource("D:\迅雷下载\[Makino House&VCB-S&philosophy-raws][Date A Live The Movie:Mayuri Judgement]\Bonus\[Makino House&VCB-S&philosophy-raws][Date A Live The Movie:Mayuri Judgement][CM1][BDRIP][HEVC Main10P FLAC][1920X1080].mkv").ConvertToYV12()
FFAudioSource("D:\迅雷下载\[Makino House&VCB-S&philosophy-raws][Date A Live The Movie:Mayuri Judgement]\Bonus\[Makino House&VCB-S&philosophy-raws][Date A Live The Movie:Mayuri Judgement][CM1][BDRIP][HEVC Main10P FLAC][1920X1080].mkv")
global crop_string = ""
global resize_string = ""
global super_params = "{pel:1,scale:{up:0},gpu:1,full:false,rc:true}"
global analyse_params = "{block:{w:32},main:{search:{coarse:{type:2,distance:-6},type:2}}}"
global smoothfps_params = "{gpuid:11,linear:false,rate:{num:5,den:2},algo:2,mask:{area:200},scene:{}}"
global demo_mode=0
global stereo_type=0
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