View Single Post
Old 19th August 2005, 00:23   #4  |  Link
ou8thisSN
Registered User
 
Join Date: Feb 2002
Posts: 119
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.

Last edited by ou8thisSN; 19th August 2005 at 00:31.
ou8thisSN is offline   Reply With Quote