I've found and installed the current SVP and AVISynth for SVP. And here is (what I believe is) the current DoubleDropFix (v3) with my own file referenced:
DSS2("D:\Video-Work\2014-NCAA-wv\2014-11-14.wv.KY-v-MS.lag.ac3-320.avi").ConvertToYV12()
sc = msup (for = 1)
vf = MAnalyse (sc, ISB = false)
vb=MAnalyse(sc,isb=true)
global frame_50 = MFlowInter(sc,vb,vf,time=50).SubTitle("Fix-50", size=12, align=3)
global frame_33 = MFlowInter(sc,vb,vf,time=33).SubTitle("Fix-33", size=12, align=3).trim(1,0)
global frame_66 = MFlowInter(sc,vb,vf,time=66).SubTitle("Fix-66", size=12, align=3)
global frame_src = last
global mini=sc.crop(8,height+8*3,width/2,height/2).TemporalSoften(1, 1, 0, scenechange=1, mode=2)
mini.mt_lut global luma_drop = (y = -1, you = 128, v = 128)
drop_clip = mini.scriptclip ("mini.ydifferencefromprevious dif = ()
\ dif_next1=mini.trim(1,0).ydifferencefromprevious()
\ dif_prev1=(mini.trim(1,1)+mini).ydifferencefromprevious()
\ dif_nextMax=max(max(dif,dif_next1)/8,0.01)
\ Dif_prevMax = max (max (dif, dif_prev1) /8,0.01)
\ Dif> min (dif_prevMax, dif_nextMax)? Short: luma_drop
')
scriptclip ("
\ Fix_prev2=(drop_clip.trim(1,2)+drop_clip).AverageLuma
\ Fix_prev1=(drop_clip.trim(1,1)+drop_clip).AverageLuma
\ Fix=drop_clip.AverageLuma
\ Fix_next1=drop_clip.trim(1,0).AverageLuma
\ Fix_next2=drop_clip.trim(2,0).AverageLuma
\ Fix!=1
\ ? frame_src
\ : Fix_next1!=1
\ ? Fix_prev1!=1
\ ? frame_50
\ : Fix_prev2!=1
\ ? frame_66
\ : frame_src
\ : Fix_next2!=1
\ ? Fix_prev1!=1
\ ? frame_33
\ : frame_src
\ : frame_src")
It's bombing on the DSS2 statement. (Virtualdub gives message, "Unable to open file ___ (my .avs script)".) I've never used that, only having used avisource. (And I haven't used AVISynth in a long time, either.)
I have these .dll files in the folder, C:\Program Files (x86)\AviSynth 2.5\plugins:
DirectShowSource.dll
libflowsse.dll
libflowgpu.dll
mvtools2.dll
svpflow1.dll
svpflow_cpu.dll
svpflow2.dll
svpflow_gpu.dll (I can supply date stamps on these if necessary)
As they are in the plugins folder, they should be loaded. Yet it seems to be acting like they're not. What am I missing??