30.03.2021, 05:43
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 :To get:
TFM().TDecimate()
QTGMC(InputType=3) #cleaning up
TFM().TDecimate()
QTGMC(InputType=3) #cleaning up
- 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:
which is what you wanted, while not hiding all the defaults.# 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)
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.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.