Okay, I fixed the ColorFix bug I introduced and uploaded a new dev.
So, Hybrid adds these things when using color fix:
0. the import
1. before the filter call, the current state gets assigned to an additional variable
2. after the filter call, vs_colorfix gets called.
# fixing colors with ColorFix
clip = vs_colorfix.average(clip=clip, ref=clipref, fast=False, radius=10)
What you can do if you want to use fixColor wherever you want, is to
1. use a custom section before the filter
# additional output baseClip
baseClip = clip
2. create another custom section behind the filter
import vs_colorfix
clip = vs_colorfix.average(clip=clip, ref=baseClip, fast=False, radius=10)
[/code]
Note that ColorFix requires that the input clip where the color fix will be applied to, must be in YUV444PS, YUV444PH, RGBS, RGBH, GRAYS, or GRAYH format.
And the reference clip where the colors are taken from, must be in YUV444PS, YUV444PH, RGBS, RGBH, GRAYS, or GRAYH format.
So you might want to use:
# additional output baseClip
baseClip = core.resize.Bicubic(clip=clip, format=vs.YUV444PS, matrix_in_s="470bg", range_s="limited")
2. create another custom section behind the filter
import vs_colorfix
# requires colorformat YUV444PS
clip = vs_colorfix.average(clip=clip, ref=baseClip, fast=False, radius=10)
or something similar.
Argh, I just noticed that the custom section tool-tip only works on right click and isn't shown in the sidebar.
So for the time being, here's a screenshot of it:
=> try the latest dev and let me know whether that works for you, if that doesn't solve your problem let me know in more details what you are doing and what you are trying to da and I might be able to post another example.
Cu Selur
Ps.: updated dev again (Hybrid_dev_2025.08.16-221059), fixed another bug and added the tool-tip info to the 'Insert before' label, this way one can see it in the sidebar.