I been looking around for the plugin/filter naa() and the closest thing I can find with it in it is called LSharpAAF.
Does anyone have the naa() avisynth plugin or avsi file?
+ Reply to Thread
Results 1 to 5 of 5
-
-
I can be wrong, but probably there is no "standalone version" of naa()......
-
Finally found it!!
Code:FUNCTION naa(Clip Clp,Int"SS",Bool"CP") { OX = Clp.Width OY = Clp.Height SS = Default(SS,2) CP = Default(CP,True) Clp = Clp.IsYV12() ? Clp : Clp.ConvertToYV12() Clp.nnedi3_rpow2(rfactor=SS,cshift="spline36resize",qual=2).nnedi3(nns=2).TurnRight() \ .nnedi3(nns=2).TurnLeft().Spline36Resize(OX,OY) CP ? Last : MergeChroma(Clp) Return(Last) }
-
Like you said, it's within LSharpAFF
http://forum.doom9.org/showthread.php?t=153835
It looks like NNEDI3 is a prerequisite
Code:FUNCTION naa(Clip Clp,Int"SS",Bool"CP") { OX = Clp.Width OY = Clp.Height SS = Default(SS,2) CP = Default(CP,True) Clp = Clp.IsYV12() ? Clp : Clp.ConvertToYV12() Clp.nnedi3_rpow2(rfactor=SS,cshift="spline36resize",qual=2).nnedi3(nns=2).TurnRight().nnedi3(nns=2).TurnLeft().Spline36Resize(OX,OY) CP ? Last : MergeChroma(Clp) Return(Last) }
EDIT: LOL too slow!