Selur's Little Message Board

Full Version: Modifying script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
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:
Code:
# 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
Thank you Selur.