Back to that clip in another filter step,...
Bad chroma handling, sharpening and resizing.

Don't think there is a really good way for this.
About the horizontal lines in the blue shirt, try some AntiAliasing + sharpening, like:
Santiag followed by CAS (!adjust FilterOrder!):
Code:
clip = antiAliasing.santiag(clip, strh=3, strv=3, type="sangnom", aa=64, opencl=True)
![[Image: Original.png]](https://i.ibb.co/GfYxt7L4/Original.png)
vs
Cu Selur
Out of curiosity, here's what happens if one first applies the Santiag as suggested and then feeds the output through a diffusion resizer (here SeedVR2).
=>
https://www.mediafire.com/file/lffo00rys...2.mkv/file
(no there is nothing comparable for it in Hybrid)
Cu Selur
Thanks so much for the help, I have been trying as much as I could to fix that one but can't. Is it ok if I give you another one with simmilar problems?
This one has simmilar problems with the Halos in the shirt.
https://mega.nz/file/EyQzQZTI#D7rWfefjPr...qVD0Ovv_rk
Also I think I am dump cause I don't understand what santiag is
Santiag is an anti aliasing filter which is based in a deinterlacer, which makes it capable to handle such artifacts.
Will look at the other sample later, when I'm back home.
Cu Selur
Could you tell me how to use it when you get home? I have tried searching about it but so far got nothing.
Filtering->Vapoursynth->Line->Anti-Aliasing->Santiag
And then adjust the settings.
Cu Selur
Okay, that is a different problem (also caused by oversharpening and reencoding oversharpened content; maybe capured with some additional sharpener turned to max).
Hmmm,.. applying BindDehalo3+Santiag
Code:
clip = dehalo.BlindDeHalo3(clip, strength=150, interlaced=False)
# applying anti aliasing using santiag
clip = antiAliasing.santiag(clip, strh=3, strv=3, type="sangnom", aa=64, opencl=True)
is way blurrier than the original, but more pleasant to the eyes imho.
After that maybe use Detailsharp and/or CAS to sharpen it a bit,..
Cu Selur