VideoHelp Forum
+ Reply to Thread
Results 1 to 5 of 5
Thread
  1. 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?
    Quote Quote  
  2. DECEASED
    Join Date
    Jun 2009
    Location
    Heaven
    Search Comp PM
    I can be wrong, but probably there is no "standalone version" of naa()......
    Quote Quote  
  3. 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)
    
    }
    Quote Quote  
  4. 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!
    Quote Quote  
  5. Just cut naa() out of the LSharpAAF script and paste it into your own.
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!