View Full Version : Combining AviSynth VD filters with Decomb3
molmik
20th February 2002, 09:33
It looks like Decomb3 dose a great job with deinterlacing, decimating, however the avi sorce shoud be in YUY2 format. I've already experienced that DVD2Avi is not the best for preparing avi for this. The VD filters work only for RGB32 format, that would be very nice to precode the avi sorce for NanDub. It is faster and better perhaps. So how can I use these two features at the same time: Avisynth VD filters and Decomb3 telicide, decimate etc.?
Plus which program is the best for preparing avi sorce?:confused:
Thanks for your comment!
hakko504
20th February 2002, 11:04
Open this script in nandub/virtualDub, just change AVIsource to your file#First load Decomb
LoadPlugin("Decomb.dll")
#For a single file use this line:
AVIsource("c:\yourfile.avi")
#or for multiple files yourfile.00.avi yourfile.01.avi etc.
SegmentedAVISource("c:\yourfile.avi")
#Do NOT use both the above lines.
#Now convert the source to YUY2 for use with Decomb.
ConvertToYUY2()
#Then IVTC with Decomb
Telecide()
Decimate(5)
#Then return the viodeo to RGB format for use in VD
#Not necessary, but I think it is faster to do it here
#instead of in VD
ConvertToRGB()
Now you can add the filters you want in VD. See also the AVIsynth reference. (http://www.videotools.net)
molmik
20th February 2002, 11:46
Thanks, I'll try it!:)
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.