:( Hello all. ihave strange effect when i us this script with avisynth 2.07 and pal dvd. the avi is lag. i think some frame are drop Can you help me # fonction function ResizeMaintainAspectWidth(clip c,int newwidth,string resizefn) { nh=floor(eval(string(c.height)+". * "+string(newwidth)+". / "+string(c.width)+".")) Return eval(resizefn+"(c,"+string(newwidth)+","+string(nh)+")") } #les petits Plugins LoadPlugin("C:\ldivx\filtdll\MPEG2Dec3.dll") LoadPlugin("c:\ldivx\filtdll\DecombLegacy") LoadPlugin("c:\ldivx\filtdll\Convolution3D.dll") LoadPlugin("c:\ldivx\filtdll\autocrop.dll") # Votre fichier d2v MPEG2source("d:\artagnan\artagnan.d2v",blend=false) # IVTC Telecide(post=true,blend=false,guide=2) Decimate(mode=2,quality=3) # On coupe AutoCrop(preview=false,hMultOf=4,wMultOf=width) # On redimmensionne ResizeMaintainAspectWidth(640,"LanczosResize") Convolution3d (preset="movieHQ") Thanks ...