Posts: 13.010
Threads: 70
Joined: May 2017
Okay, running it through seedvr2 using ComfyUI won't work, since something is broken in my ComfyUI setup, which at the start of the processing eats all my ram and then crashes Windows.
But I doubt even a diffusion resizer will add much usable details to something like this.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Offline between (including) 29th of June and 5th of July => RockHarz Festival
Posts: 6
Threads: 1
Joined: Jun 2026

Friend, you're really good at this. How did you configure eatch filters?
Posts: 13.010
Threads: 70
Joined: May 2017
Yesterday, 03:11
(This post was last modified: Yesterday, 03:40 by Selur.)
See the script I linked to.

here are the relevant parts:
# Spot removal using SpotLess + DeltaRestore
clip = SpotLess.SpotDelta(clip, radT=3, rec=True, pel=1, dark2_brt=0.97)
# remove jitter using DeJitter
clip = core.vcm.DeJitter(clip)
# removing flickering using ReduceFlicker
clip = core.rdfl.ReduceFlicker(clip, strength=3, aggressive=1)
clip = core.std.Crop(clip, left=28, right=6, top=2, bottom=16) # cropping to 686x558
# Fix bright and dark line artifacts near the border of an image using BalanceBorders
clip = edge.bbmod(clip, cLeft=8, cTop=8, cRight=0, cBottom=0)
# denoising using VsRemoveDirtMC
clip = removeDirt.RemoveDirtMC(clip)
# denoising using MCTemporalDenoise
clip = denoise.MCTemporalDenoise(clip, settings="very high", ncpu=10)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Offline between (including) 29th of June and 5th of July => RockHarz Festival
Posts: 6
Threads: 1
Joined: Jun 2026
Will De jitter correct edge and image glitches?
Posts: 13.010
Threads: 70
Joined: May 2017
Not in general, it is meant to help with vhs jitter a bit, depending on the source it can do good but also harm. So it is not a general fiter to use.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Offline between (including) 29th of June and 5th of July => RockHarz Festival