echooff
18th February 2004, 17:43
I am trying to move this film from vhs to dvd in ntsc land. I have managed to capture it using picvideo mjpeg codec 680x480. The file is about 16 gig in size. I have the avisynth manual, the forum faqs and a lot of threads. The result of all this reading has been very little enlightenment and mostly mass confusion. As I become more comfortable with scripts hopefully my understanding (and ability will improve.
I came across this script on a post somewhere in the forum(undot on down are my additions) and it worked very well using avisynth 2.54 and Tmpgenc in 2 pass vbr mode. I am going to encode it again using cce with 3 pass. I have several questions.
1. where in the scrip should I place my crop command.
2. I understand why the fields are seperated and applying convolution3d on each field, does this also apply to undot and mipsmooth. If so do the filters need to be place directly below con3d with odd even commands or do I again seperate fields and weave prior to each filter.
3. Where in the scrip does the resize command need to placed.
4. Am I off base with this script. Does anyone have any suggestions for improvement.
5. It appears to need decombing where should I place that.
I am
AviSource("D:\The Renaissance Man.avi")
ReInterpolate411()
SeparateFields()
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()
UnDot()
mipsmooth()
#STMedianFilter(8,20,4,8)
antiflicker()
I came across this script on a post somewhere in the forum(undot on down are my additions) and it worked very well using avisynth 2.54 and Tmpgenc in 2 pass vbr mode. I am going to encode it again using cce with 3 pass. I have several questions.
1. where in the scrip should I place my crop command.
2. I understand why the fields are seperated and applying convolution3d on each field, does this also apply to undot and mipsmooth. If so do the filters need to be place directly below con3d with odd even commands or do I again seperate fields and weave prior to each filter.
3. Where in the scrip does the resize command need to placed.
4. Am I off base with this script. Does anyone have any suggestions for improvement.
5. It appears to need decombing where should I place that.
I am
AviSource("D:\The Renaissance Man.avi")
ReInterpolate411()
SeparateFields()
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()
UnDot()
mipsmooth()
#STMedianFilter(8,20,4,8)
antiflicker()