Posts: 6
Threads: 2
Joined: Mar 2021
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
Posts: 10.553
Threads: 57
Joined: May 2017
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.
Posts: 6
Threads: 2
Joined: Mar 2021
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.
Posts: 10.553
Threads: 57
Joined: May 2017
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 6
Threads: 2
Joined: Mar 2021
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 ?
Posts: 10.553
Threads: 57
Joined: May 2017
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 6
Threads: 2
Joined: Mar 2021
30.03.2021, 10:12
Finally it's working , was a problem with misc.ini file , wrong extension...many thanks Selur.