VideoHelp Forum




+ Reply to Thread
Results 1 to 13 of 13
  1. Member
    Join Date
    Jun 2007
    Location
    Kuwait
    Search Comp PM
    Hello,

    I have an anime with a interlace and noise problems. I have fix interlace using QTGMC but i can't fix the noise using DeNoise. Any help with the noise. please ?!

    I have use this script:
    Code:
    LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\dgdecode.dll")
    LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\mt_masktools.dll")
    LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\RemoveGrain.dll")
    LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\mvtools2.dll")
    LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\nnedi3.dll")
    Import("C:\Program Files (x86)\AviSynth 2.5\plugins\QTGMC-3.32.avsi")
    AviSource("test.avi")
    QTGMC(Preset="Slow")
    SelectEven()
    Sample file:
    http://www.mediafire.com/?hndjhvixif5jdqh

    Best Regards,
    SB4
    Last edited by SB4; 21st Aug 2012 at 17:32.
    Quote Quote  
  2. McTemporalDenoise(). Use whatever preset you like. Or tune any of the settings yourself.

    That clip should be inverse telecined, not QTMGC. Unfortunately, interlaced video was encoded with Xvid as if it was progressive so the chroma channels are screwed up.

    Code:
    AviSource("rTest.avi", audio=false) 
    AssumeTFF()
    TFM()
    TDecimate()
    McTemporalDenoise(settings="very high")
    x264 mkv attached.

    If that's too slow for you try TTempSmooth() at its stronger settings.
    Image Attached Files
    Last edited by jagabo; 21st Aug 2012 at 18:52.
    Quote Quote  
  3. DECEASED
    Join Date
    Jun 2009
    Location
    Heaven
    Search Comp PM
    Just as a side note:

    it's not recommended to place many files into Avisynth's default plugin folder;
    FWIW, I have only four of them to be loaded automagically:

    Code:
    08/09/2012  01:36            59,904 ffavisynth.dll
    01/27/2010  10:10            26,624 DirectShowSource.dll
    07/05/2005  13:04             7,129 colors_rgb.avsi
    07/19/2012  01:09                73 ffavisynth.avsi
    The other ones remain inside an "AVSplugins" directory, and are called only when needed, of course
    Quote Quote  
  4. And it's not necessary to LoadPlugin() dll files, or Import() AVSI files, that are already in the plugins folder.
    Quote Quote  
  5. Member
    Join Date
    Jun 2007
    Location
    Kuwait
    Search Comp PM
    I have to load .dll files and import .avsi files manually because it dose not load automatically...

    Thanks for the help guys...
    Quote Quote  
  6. Make sure the plugin folder is set properly in the registry:

    HKEY_LOCAL_MACHINE\SOFTWARE\AviSynth\plugindir2_5
    Quote Quote  
  7. Member
    Join Date
    Jun 2007
    Location
    Kuwait
    Search Comp PM
    Thanks jagabo now it's work fine

    I have one or two questions to ask. I want to upscale the video to 1024x600 and i have use the script below but the result i think need more sharpen and a little denoise. Is it right on i am wrong...?! How can i use eedi3 instead of nnedi3 ?
    Code:
    nnedi3_rpow2(2)
    LanczosResize(1024,600)
    Sharpen(0.3)
    Regards,
    SB4
    Quote Quote  
  8. That would be the wrong aspect ratio. The video is 4:3 DAR so you should resize to 1024x768. I would try something like:

    Code:
    AviSource("rTest.avi", audio=false) 
    AssumeTFF()
    TFM()
    TDecimate()
    Deblock()
    UnDot()
    McTemporalDenoise(settings="very high")
    LSFMod(strength=200)
    nnedi3_rpow2(2, cshift="BicubicResize", fwidth=1024, fheight=768)
    Quote Quote  
  9. Member
    Join Date
    Jun 2007
    Location
    Kuwait
    Search Comp PM
    Ok, I do more test using NNEDI3 & aWarpSharp ( 2012.03.28 version ). Is this a good result or i used to much sharpen...?!
    Code:
    NNEDI3_rpow2(rfactor=2,cshift="lanczosresize",fwidth=1024,fheight=600)
    aWarpSharp()
    Last edited by SB4; 21st Aug 2012 at 23:03.
    Quote Quote  
  10. Member
    Join Date
    Jun 2007
    Location
    Kuwait
    Search Comp PM
    thanks jagabo i don't saw your post
    Quote Quote  
  11. Yeah, I think awarpsharp() looks a little better. Also try going less sharp with nnedi3 (bilinear) and more with awarpsharp(). Or, since the video is sharper on the vertical axis than the horizontal axis (as with most video based sources), use a sharp resize for the horizontal, softer for the vertical:

    Code:
    nnedi3_rpow2(2)
    LanczosResize(1024,960)
    BilinearResize(1024,768)
    aWarpSharp(depth=32)
    I thought that looked better than the others I tried.

    Consider using Stab() to reduce the projector bounce.
    Last edited by jagabo; 21st Aug 2012 at 23:25.
    Quote Quote  
  12. Member
    Join Date
    Jun 2007
    Location
    Kuwait
    Search Comp PM
    Thanks i realy appreciate your help

    Regards,
    SB4
    Quote Quote  
  13. FrFun7 is good denoiser for anime. Also a line darkener like vmtoon - http://avisynth.org/mediawiki/External_filters#Linedarkening
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!