My video is slow and when it gets to another part, it is showing that previous scene. Does that mean there is something wrong with my Windows, or my encoding, or the players I am trying to use? My choice is MPC-HC. I also tried to use DivX Player, and VLC. Yes, this move for encoding is DivX. My script is below. What do I need to do to fix this problem?



LoadPlugin("C:\Program Files\Avisynth 2.5\plugins\mvtools.dll")
LoadPlugin("C:\Program Files\Avisynth 2.5\plugins\fft3dfilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TIVTC.dll")
AVISource("H:\88 minutes (2008)\video.avi")
Converttoyv12()
Tfm()
Tdecimate()
LanczosResize(640,352)
source=last
denoised=FFT3DFilter(sigma=6,sigma2=6,sigma3=5,sig ma4=4,bt=5,bw=32,bh=32,ow=16,oh=16,plane=4)
backward_vec2 = MVAnalyse(denoised,isb = true, delta = 2, pel = 2, overlap=4, sharp=1, idx = 1,dct=1)
backward_vec1 = MVAnalyse(denoised,isb = true, delta = 1, pel = 2, overlap=4, sharp=1, idx = 1,dct=1)
forward_vec1 = MVAnalyse(denoised,isb = false, delta = 1, pel = 2, overlap=4, sharp=1, idx = 1,dct=1)
forward_vec2 = MVAnalyse(denoised,isb = false, delta = 2, pel = 2, overlap=4, sharp=1, idx = 1,dct=1)
MVDegrain2(source,backward_vec1,forward_vec1,backw ard_vec2,forward_vec2,thSAD=400,idx=2)