colt4523
28th July 2004, 22:54
I would like to see if I am on the right track with my script. I am converting my vhs animation episodes that I recorded from television into dvds. I am using my s-video vcr to get them onto my computer. The cartoons are NTSC and are pretty dirty do to my less then steller cable reception. Editing is done with virtualdubmod with the avisynth editor and will be using tmpgenc to encode. I plan on putting 6 23-24min episodes on one dvd. Ok, that is the background of my project and here is my script:
LoadPlugin ("LoadPluginEx.dll")
LoadPlugin("DustV5.dll")
LoadPlugin("peachsmoother.dll")
LoadPlugin("MSharpen.dll")
LoadPlugin("FluxSmooth.dll")
LoadPlugin("GuavaComb.dll")
AviSource("E:\movie\origins.avi")
Trim(352,26493) ++ Trim(27701,39817)
Pixiedust(8)
Fluxsmooth(spatial_threshold=4)
PeachSmoother(NoiseReduction = 20, Stability = 25, Spatial = 100)
GuavaComb(mode="NTSC",activation=30,recall=85,MaxVariation=40)
Tweak(bright=4)
Crop(0,5,640,475)
Cropbottom(8)
Bicubicresize(352,480)
MSharpen(5,100,true,false,false)
FadeIO2(15)
-everything looks ok(I think) but would like to know if my settings are crazy, wrong order, overkill or should I be using some different filters or combos (any favorites)? Any opinions or comments would be great.
LoadPlugin ("LoadPluginEx.dll")
LoadPlugin("DustV5.dll")
LoadPlugin("peachsmoother.dll")
LoadPlugin("MSharpen.dll")
LoadPlugin("FluxSmooth.dll")
LoadPlugin("GuavaComb.dll")
AviSource("E:\movie\origins.avi")
Trim(352,26493) ++ Trim(27701,39817)
Pixiedust(8)
Fluxsmooth(spatial_threshold=4)
PeachSmoother(NoiseReduction = 20, Stability = 25, Spatial = 100)
GuavaComb(mode="NTSC",activation=30,recall=85,MaxVariation=40)
Tweak(bright=4)
Crop(0,5,640,475)
Cropbottom(8)
Bicubicresize(352,480)
MSharpen(5,100,true,false,false)
FadeIO2(15)
-everything looks ok(I think) but would like to know if my settings are crazy, wrong order, overkill or should I be using some different filters or combos (any favorites)? Any opinions or comments would be great.