# For slow motion and/or de-interlacing #LoadPlugin("c:\program files\avisynth\plugins\LeakKernelDeint.dll") #LoadPlugin("c:\program files\avisynth\plugins\MVTools.dll") # Where the files are. SetWorkingDir("e:\dv\wrist mount\step7slow") # Get the function import("step7slow.avs") # Get the clip and convert to YV12 for speed myclip = avisource("input1_dv.avi").ConvertToYV12(interlaced=true) # The function, speeds ranging from normal to 8x slow motion. #output = step7slow(myclip, preview=false, in=58, out=88, # \initspd=1, transpda=2, transpdb=3, slowspd=8, # \buffa=6, buffb=6, thresh=0, debug=true) output = step7slow(myclip, preview=false, in=58, out=88, \initspd=1, transpda=2, transpdb=4, slowspd=8, \buffa=6, buffb=6, thresh=0, debug=true) return output