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
#1
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
Reply
#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
Reply
#3
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.
Reply
#4
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
Reply
#5
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 ?
Reply
#6
What there is a misc.ini under 'libssl.dll'' ?

Creating a misc.ini file inside the Hybrid folder with:
[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
Reply
#7
Thumbs Up 
Finally it's working , was a problem with misc.ini file , wrong extension...many thanks Selur.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)