The following warnings occurred:
Warning [2] Trying to access array offset on null - Line: 14 - File: inc/plugins/cookielaw.php(272) : eval()'d code PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/cookielaw.php(272) : eval()'d code 14 errorHandler->error_callback
/inc/plugins/cookielaw.php 272 eval
/inc/class_plugins.php 142 cookielaw_global_intermediate
/global.php 100 pluginSystem->run_hooks
/printthread.php 16 require_once
Warning [2] Trying to access array offset on null - Line: 14 - File: inc/plugins/cookielaw.php(272) : eval()'d code PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/cookielaw.php(272) : eval()'d code 14 errorHandler->error_callback
/inc/plugins/cookielaw.php 272 eval
/inc/class_plugins.php 142 cookielaw_global_intermediate
/global.php 100 pluginSystem->run_hooks
/printthread.php 16 require_once



Selur's Little Message Board
Filter order - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: Filter order (/thread-1790.html)



Filter order - radusound - 29.03.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


RE: Filter order - Selur - 30.03.2021

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


RE: Filter order - radusound - 30.03.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.


RE: Filter order - Selur - 30.03.2021

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


RE: Filter order - radusound - 30.03.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 ?


RE: Filter order - Selur - 30.03.2021

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


RE: Filter order - radusound - 30.03.2021

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