Selur's Little Message Board

Full Version: Filter order
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Selur can you tell me please it's posiblle to change filter order in avisynth ? I want to use TIVTC with custom QTGMC settings , can i do that and how ? Thank you.

I want to insert this settings :

TFM().TDecimate()
QTGMC(InputType=3) #cleaning up
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:
Code:
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:
    Code:
    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:
    Code:
    # 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
In my version ( 0.2.3) i don't have filter order and in avisynth denoise i don't have qtgmc , only at deinterlace section.
I try instal last version but don't work with misc.ini , give me '' administrator rights '' error.
a. Version, is displayed at the top of Hybrid, like "Hybrid 2021.01.31.1"
b. QTGMC was added to Denoise in '2020.12.12.1'
-> update your Hybrid version

Cu Selur
Update but give me administrator error ( windows 7 , 64 ) , i notice that at older version misc.init was under hybrid but now under ''libssl.dll''...what ca i do ?
What there is a misc.ini under 'libssl.dll'' ?

Creating a misc.ini file inside the Hybrid folder with:
Code:
[General]
runAsAdmin=true
as content, allows to use Hybrid even with administrator privileges.
This has been mentioned multiple times and could have been found using the forum search.

Cu Selur
Finally it's working , was a problem with misc.ini file , wrong extension...many thanks Selur.