Log in

View Full Version : ANY GOOD FILTER codes


march2006
23rd October 2006, 01:26
cceing sp2 1.0.0.4

SetMemoryMax(96)
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveGrain_v10pre1.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\undot.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\LeakKernelDeint.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenfaster.avs")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\LimitedSupport_08Jan06.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\mt_masktools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\WarpSharp.dll")
LeakKernelDeint(order=1, threshold=6)
undot()
LimitedSharpenFaster(ss_x=1.0,ss_y=1.0,Smode=4,strength=120)
DeGrainMedian(limitY=2,limitUV=3,mode=1)

is this a good code to run CCEING Passes without any out of sync or so?

another code i found

LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\degrainmedian.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\convert60ito24p.avs")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\LeakKernelDeint.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\asharp")
LeakKernelBob(order=1,threshold=6)
convert60ito24p(2,0)
asharp(1,4) #any sharpener or your favrorite filters
degrainmedian(mode=2)#any sharpener or your favrorite filters
changeFPS(24000,1001,true)

Bingo, this line did the job perfectly. Actually , it more accurate than changeFPS(24) that has been used to correct audio problem.

It worked. Just replace the line changeFPS(24) with this at the end or same place as you like best.
change FPS(24000,1001,true)


or the new version of u .. will take care the quality right? do i need any filters for it or not/

thanks..

Susana
23rd October 2006, 01:45
Maybe there are other/s more appropiate sections to post in.

G_M_C
23rd October 2006, 12:35
[...] Just A Bunch of AviSynth commands [...]



Reading through your question I get the impression you have absolutely no clue as to what that piece of scripting actually means and/or is supposed to do, even if the scripts you describe do indeed change the FPS of a clip by pure coincidence. Because of this your question is not answerable.

When you DO wanna know what this scripting actually means, you need to brace youself on SOME SERIOUS LEARNING on AviSynth Scripting. But when you do get around to that, you'll open up a completely new world of video-processing with more possibillities that you can know about.

My "guesstimation" of your problem is:
Trying to merge the Video of a PAL clip with the audio of a NTSC-clip (hint: 24000 / 1001 ~ 23,976 framerate).