Selur's Little Message Board
Modifying script - 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: Modifying script (/thread-1799.html)



Modifying script - radusound - 09.04.2021

I want to change some TFM parameters , it's can be done ?
I need to insert this:
TFM(Metric=1, MI=55, Chroma=true)
Thank you.


RE: Modifying script - Selur - 09.04.2021

For Avisynth there is no direct option to adjust TFM in Hybrid further through the gui. (neither 'mi' nor 'metric' can be changed)

Only way would be to
a. write the whole script manually and use it as source
or
b. to add a custom addition (at the position you want it to be) and properly signal to Hybrid how the frame rate, frame count, scan type changed used.
So you would have to use:
# scantype progressive
in your custom addition and also enable and adjust 'Filtering->Overwrite Output->Frame count to' and 'Filtering->Overwrite Output->Frame rate to'.

Cu Selur


RE: Modifying script - radusound - 09.04.2021

Thank you Selur.