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

Friend, you're really good at this. How did you configure eatch filters?
See the script I linked to.

here are the relevant parts:
Code:
# 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
Will De jitter correct edge and image glitches?
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.