I am doing a PAL VHS to NTSC DVD conversion. I capture to PAL DV on my computer, then used an avisynth script in VDub to crop, resize, filter, and change frame rate to 23.976 fps, and saved as DV *.avi file. This file is 52' 15" long and audio and video are in sync. I saved the audio wav file and it also is 52' 15" in duration. I plugged edited avi file into CCE 2.67 and it produces an *.m2v file of 52" 12' duration - 3 seconds shorter. Since then I cannot get the audio in sync. I tried CoolEdit to change the length of the audio to 52' 12" but the audio and video get progressively out of sync. Even used Maestro to create audio sync file but it didn't work. This is the avs file. AVISource("G:\Temp\Emma Home.avi") LoadPlugin("C:\DVD\Filters\SmoothDeinterlacer.dll") LoadPlugin("C:\DVD\Filters\Convolution3D.dll") Trim(12,78389) SmoothDeinterlace(doublerate=true) Cropbottom(8) LanczosResize(720,480) ConvertFPS(47.952) SeparateFields() odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0) evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0) SelectEvery(4,0,3) # or SelectEvery(4,1,2) or #Interleave(evn,odd) Weave() There is much discussion about this on the forum but I have yet to find a solution. Mainly, I'd like to know why CCE changed the duration of the video?