Posts: 11
Threads: 4
Joined: Mar 2026
Hello I have been trying for atleast 3 days to find settings that would fix this thing but I can't, look at the shirt and the paperr thing.I want to remove those lines
https://mega.nz/file/B6IHGQqB#z5u-Ftp1Us...x65aTXrJrA
Posts: 12.677
Threads: 70
Joined: May 2017
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!):
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 12.677
Threads: 70
Joined: May 2017
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 11
Threads: 4
Joined: Mar 2026
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
Posts: 12.677
Threads: 70
Joined: May 2017
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 11
Threads: 4
Joined: Mar 2026
Could you tell me how to use it when you get home? I have tried searching about it but so far got nothing.
Posts: 12.677
Threads: 70
Joined: May 2017
08.04.2026, 15:22
(This post was last modified: 08.04.2026, 15:23 by Selur.)
Filtering->Vapoursynth->Line->Anti-Aliasing->Santiag
And then adjust the settings.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 12.677
Threads: 70
Joined: May 2017
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
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