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..
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..