is it possible to load more than one plugin in the same script?and how do i get the coordinates for denoise,im talking about the denoise plugin from Vcmohan,i have to put in the lx,rx,variables etc.The movieclip is mpeg1 size,352x240
+ Reply to Thread
Results 1 to 10 of 10
-
-
Yeah, you can use as many plugins as you want, as long as you place them in the C:\Program Files\Avisynth\plugins
folder.
I'd use a different denoiser than that one. mohan makes some great plugins, but that one isn't very popular. With such a small source file (352x240), you might want to upsize, denoise, then downsize back to the original specs. The denosing will look a bit more natural that way.
Code:Spline36Resize(720,480) #Upsize DegrainMedian() #or you favorite denoiser BicubicResize(352,240) # Back to Original Dimensions
-
got any other denoise plugins,and how is his Removegrain plugins?
-
RemoveGrain is written by a German fellow named Kassandro who is quite a brilliant programmer.
The choice of denoiser depends on your source file.
Download Fizick's (another programmer from russia) denoisers:
http://avisynth.org.ru/fizick.html
VagueDenoiser and Degrainmedian are really good.
He also has 2 others which are the best ones out there, but you'll need a bit of know how to use them. -
Code:
Spline36Resize(720,480) #Upsize
DegrainMedian() #or you favorite denoiser
BicubicResize(352,240) # Back to Original Dimensions
well with the degrainmedian should i use variables or leave it the way you wrote it an use it? -
Depends on the amount of dirt you want to clean. The default is pretty good, so leaving the () empty is OK.
But again, it all depends on your source file.
Post a screen capture of a frame of your unprocessed video if you want more assistance. -
will do so tommorow,anyway i did an experiment but i only used the degrainmedian but then i saw more grain in the source,what u think happened?
-
The best denoiser is MVTools http://avisynth.org.ru/mvtools/mvtools-v1.8.6.zip
Unzip and Put the DLL it into your avisynth plugins directory
Script:
source=last
backward_vec2 = source.MVAnalyse(isb = true,blksize=8, delta = 2, pel = 2, overlap=4, sharp=1, idx = 1)
backward_vec1 = source.MVAnalyse(isb = true,blksize=8, delta = 1, pel = 2, overlap=4, sharp=1, idx = 1)
forward_vec1 = source.MVAnalyse(isb = false,blksize=8, delta = 1, pel = 2, overlap=4, sharp=1, idx = 1)
forward_vec2 = source.MVAnalyse(isb = false,blksize=8, delta = 2, pel = 2, overlap=4, sharp=1, idx = 1)
source.MVDegrain2(backward_vec1,forward_vec1,backw ard_vec2,forward_vec2,thSAD=400,idx=1)
sharpen(0.3)
You control the amount of cleanup with the thSAD parameter. Use 800 if 400 isn't enough. Also, this filter is slowwwww. Quality takes time. It shouldn't be too slow on a VCD source, but it'll still take a while. Yes, there is something you can do to speed it up. Buy a faster computer.
Here's the unprocessed image on top, and the MVtools degrained one on the bottom
Similar Threads
-
Help with scripting - please
By cliffspicer in forum SVCD2DVD & VOB2MPGReplies: 4Last Post: 12th Oct 2009, 12:08 -
A few ideas for a Video Editor for AVIsynth Scripting
By vhelp in forum EditingReplies: 4Last Post: 2nd Jan 2009, 23:47 -
VirtualDub Scripting
By shojimbo0 in forum ProgrammingReplies: 1Last Post: 20th Oct 2008, 13:58 -
Avisynth Batch Scripting
By Maikeru-sama in forum Video ConversionReplies: 1Last Post: 20th Jun 2008, 22:18 -
DVD scripting
By Rosko1702RS in forum Authoring (DVD)Replies: 6Last Post: 15th Mar 2008, 00:57