This is my default script, pretend this is your script:
aviSource("D:\A_DV_to_DVD_Files\Justin_wedding\Justin_wedding_Vdub.avi")
Letterbox(64,64)
SeparateFields()
ConverttoYUY2()
ReInterpolate411()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
thats all you need to put in there...
just change where it says D:\..... to whatever directory path you left your movie file in.
make sure you have those filters copied into the plug-ins directory (ReInterpolate411 and Convolution3d). ReInterpolate can be found here:
http://mywebpages.comcast.net/trbarr...rpolate411.zip
and Convolution3d is here:
http://www.avisynth.org/warpenterpri...l_20030422.zip
Letterbox(64, 64) just converts 4:3 format of the source video into 16:9 letterbox format. Leave that in or take that out as you want. If you leave it in, leave CCE as 4:3. Encode in CCE as Interlaced...
or, this script was suggested by a respected member here:
aviSource("D:\A_DV_to_DVD_Files\Justin_wedding\Justin_wedding_Vdub.avi")
Letterbox(64,64)
ReInterpolate411()
Peach()
DoubleWeave.SelectOdd()
This uses ReInterpolate and the PeachSmoother filter.
PeachSmoother can be found here:
http://www.avisynth.org/warpenterpri...l_20030801.zip
hope that helps.