Hi, I'm a newbee to AviSynth 2.5. I'm trying to edit a movie, aligning three parts together from three different sources (2 from MPEG2 and one from an avi compressed with Huffyuv). VDMod gives me the error message: "Video formats don't match". The three chunks are filtered as follows: orig: mpeg2source("aotc.d2v",idct=1) Crop(2,72,718,434) LanczosResize(640,272) senate_iris: AVISource("1senate_iris.avi") ConvertToYV12() Crop(2,72,718,434) LanczosResize(640,272) Sharpen(0.2) senate: mpeg2source("1senate\1senate.d2v",idct=1) Crop(2,74,718,428) LanczosResize(640,272) Levels(0,1.11,255,7,208) Sharpen(0.4) Tweak(sat=1.28) ConvertToRGB32() RGBAdjust(1,1,1.12,1) ConvertToYV12() Alligning the 2nd and 3rd chunk is OK. If I erase the last move from the 3rd chunk's filterchain (ConvertToRGB, RGBAdjust ...), I can allign it with the 1st chunk. Now I'm pretty confused, tryed to find similar issues in the forum but... (maybe my lack of english). If anyone has an idea, please help. Thnx