This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Filter order
#2
Quote:Selur can you tell me please it's posiblle to change filter order in avisynth ?
Yes, one can change the filter order using "Filtering->Avisynth->Misc->Filter Order->Custom Filter Order", but you example uses the default filter order.

Quote:I want to insert this settings :

TFM().TDecimate()
QTGMC(InputType=3) #cleaning up
To get:
TFM().TDecimate()
QTGMC(InputType=3) #cleaning up
you simply need to:
  • make sure Avisynth is used (by setting "Filtering->Support" to "Avisynth")
  • make sure source is treated as telecine
    (assumed scan order can be adjusted using "Filtering->(De-)Interlace/Telecine->Deinterlace/Telecine Settings->Overwrite input scan type to")
    Hybrid then automatically uses 'TIVTC (Avisynth)'
    this gives:
    TFM(mChroma=true)
    TDecimate(cycleR=1,cycle=5,noblend=true,nt=0,blockx=32,blocky=32,chroma=true,denoise=false,ssd=false,display=false)
  • enable QTGMC as filter ("Filtering->Avisynth->DeNoise->QTGMC')
  • set QTGMC 'Input type' to 3 ("Filtering->Avisynth->DeNoise->QTGMC->Input type')
    this gives:
    # deinterlacing
    TFM(mChroma=true)
    TDecimate(cycleR=1,cycle=5,noblend=true,nt=0,blockx=32,blocky=32,chroma=true,denoise=false,ssd=false,display=false)
    AssumeFrameBased()
    # filtering
    # denoising filtering using QTGMC
    QTGMC(Preset="Fast", InputType=3, TR2=1, Sharpness=1.0, SourceMatch=0, Lossless=0, ediThreads=2)
    which is what you wanted, while not hiding all the defaults.

Quote: I want to use TIVTC with custom QTGMC settings , can i do that and how ?
You can change the QTGMC settings as you please, you can even add additional parameters using the 'Addition' option in QTGMC.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
Filter order - by radusound - 29.03.2021, 22:56
RE: Filter order - by Selur - 30.03.2021, 05:43
RE: Filter order - by radusound - 30.03.2021, 06:16
RE: Filter order - by Selur - 30.03.2021, 06:20
RE: Filter order - by radusound - 30.03.2021, 06:43
RE: Filter order - by Selur - 30.03.2021, 07:58
RE: Filter order - by radusound - 30.03.2021, 10:12

Forum Jump:


Users browsing this thread: 1 Guest(s)