09.10.2025, 23:38
Ok, if you want more color stability, you can add the following call
Put it just before the call
In this way the color of the football field will be more stable (see picture)
![[Image: attachment.php?aid=3326]](https://forum.selur.net/attachment.php?aid=3326)
Using HAVC_ColorAdjust will slow down the encoding speed.
It is possible to speed-up the encoding speed by decreasing the size of the frames.
To do that change the following line
with this line
The previous RC6 had a problem in loading the scene detection plugin.
Please use the RC7 attached to this post.
Dan
clip = havc.HAVC_ColorAdjust(clip, BlackWhiteTune="none", ReColor=True, Strength=4, ScThreshold=0.15, ScNormalize=False, DeepExVivid=False, ScMinFreq=0, chroma_resize=True)Put it just before the call
# adjusting output color to YUV420P8 for x264Model
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, matrix_s="709", dither_type="error_diffusion")In this way the color of the football field will be more stable (see picture)
Using HAVC_ColorAdjust will slow down the encoding speed.
It is possible to speed-up the encoding speed by decreasing the size of the frames.
To do that change the following line
# Resizing using bicubic spline to 1280x960
clip = core.resize.Spline36(clip, width=1280, height=960)with this line
# Resizing using bicubic spline to 940x720
clip = core.resize.Spline36(clip, width=940, height=720)The previous RC6 had a problem in loading the scene detection plugin.
Please use the RC7 attached to this post.
Dan

