I'm also having a problem with my TMPGenc lately... I hope I'm in a right time to ask this question.

I've been succesfully encoding an AVI to MPG all this while. Just recently, I decided to frameserve from avisynth to TMPGenc for faster processing speed. I'm deinterlacing, filtering and resizing using avisynth and feed the result to TMPGenc for encoding. The speed is very encouraging where I save more than 50% of the time. However, it is not always a success. It's really depend on luck. Sometimes I will get an error message saying that TMPGenc unable to read a certain address, but when I re-encode again, I get a same error message but on a different address. Sometimes, with the same AVI and same script, I can succesfully encode the whole clip... Does anyone know why I got this intermittent error.

By the way, here is my AVS script.
---------------------------------------
Avisource("Project 1 Final.avi")
SeparateFields()
ConvertToYuy2()
Weave()
Telecide()
FieldDeinterlace(full=false)
Convolution3D(preset="movieLQ")
saturation = 0.8
cu = - (1-saturation)*256
ColorYUV(off_y=0, gain_y=64, cont_u=cu, cont_v = cu)
LanczosResize(352,288)

Can anyone let me know what is the problem with my script?
Avisynth version : 2.5.1
TMPGenc version : 2.511.51.160 (2.511)



Rgrds