23.04.2026, 20:47
(18.04.2026, 18:56)Selur Wrote:Quote:I try to insert the following script to Vapoursynth - custom - Insert before [smdegrain]:unless you let Hybrid know that you changed the color format (see tool-tip of 'Insert before'), this can cause issues in itself.
clip = core.resize.Point(clip, format=vs.YUV420P16)
Cu Selur
Another question, would it be better to ONLY convert to high bit depth, without applying any other filter, before begin to encode? and how to do that in hybrid?
I choose "4 - nearest neighbour resize" in the main Crop/Resize tab, and insert the following script in 'Insert before' Resize:
Quote:clip = core.resize.Point(clip=clip, format=vs.YUV444P16, dither_type="error_diffusion")
- '# colorformat <YUV444P16>'
but in the final VS scripts still shows:
Quote:# adjusting output color from YUV420P8 to YUV420P10 for SvtAv1Model
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10, dither_type="error_diffusion")

