xiaNaix
8th October 2003, 14:20
I'm an Avisynth newbie and am in the process of converting some of my old VHS tapes to DVD-R. I've experimented with alot of scripts posted here and at various forums. Combining bits and pieces and reading lots of posts has lead to the following script.
AviSynth_plugin_directory="C:\Program Files\AviSynth 2.5\plugins\"
LoadPlugin(AviSynth_plugin_directory+"ChromaShift.dll")
LoadPlugin(AviSynth_plugin_directory+"Cnr2.dll")
LoadPlugin(AviSynth_plugin_directory+"FluxSmooth.dll")
LoadPlugin(AviSynth_plugin_directory+"GuavaComb.dll")
LoadPlugin(AviSynth_plugin_directory+"PeachSmoother.dll")
LoadPlugin(AviSynth_plugin_directory+"Undot.dll")
AVISource("filename.avi")
Undot()
ChromaShift(L=-2)
GuavaComb(Mode="NTSC", Recall=75, MaxVariation=5, Activation=90)
SeparateFields()
PeachSmoother()
Weave()
FluxSmooth(2,-1)
Cnr2("xxx",4,5,255)
Limiter()
LanczosResize(352,480)
My test encodes have resulted in great looking output but, before comitting the script to final usage, I'd like to know what others here think. As I said, I'm pretty green when it comes to this stuff. :D
AviSynth_plugin_directory="C:\Program Files\AviSynth 2.5\plugins\"
LoadPlugin(AviSynth_plugin_directory+"ChromaShift.dll")
LoadPlugin(AviSynth_plugin_directory+"Cnr2.dll")
LoadPlugin(AviSynth_plugin_directory+"FluxSmooth.dll")
LoadPlugin(AviSynth_plugin_directory+"GuavaComb.dll")
LoadPlugin(AviSynth_plugin_directory+"PeachSmoother.dll")
LoadPlugin(AviSynth_plugin_directory+"Undot.dll")
AVISource("filename.avi")
Undot()
ChromaShift(L=-2)
GuavaComb(Mode="NTSC", Recall=75, MaxVariation=5, Activation=90)
SeparateFields()
PeachSmoother()
Weave()
FluxSmooth(2,-1)
Cnr2("xxx",4,5,255)
Limiter()
LanczosResize(352,480)
My test encodes have resulted in great looking output but, before comitting the script to final usage, I'd like to know what others here think. As I said, I'm pretty green when it comes to this stuff. :D