Is there a name for these vertical artifacts? I occasionally encounter these when encoding a DVD and don't understand what they are or how they occur. Is it an artifact from the transfer process? Can they be filtered?
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!
+ Reply to Thread
Results 1 to 19 of 19
Thread
-
-
I remember to have got these as a result of de-interlacing quite often. It seems that quite chaotic random structures get clustered by deinterlacing and become more visible. Maybe you could try different de-interlacers.
-
Thanks I just tried some other deinterlacers, QTGMC, BWDIF, yadif, but couldn't find a solution. Any other ideas? Surely there is a name for this as I've encountered it more than a few times.
-
post a short clip from your source, something that shows the problem
Last edited by davexnet; 25th Sep 2024 at 21:47.
-
-
-
I think it's just noisy, I don't think it's an artifact of the deinterlace - unless I'm still looking at the wrong thing.
Does this version with some denoise help? -
@LaserBones: Post a few seconds of the original .vob of the DVD
The .mkv looks like a messy PsF or poorly baserate deinterlaced video encoded as interlaced .... and there are mpeg2 artifacts.Last edited by Sharc; 26th Sep 2024 at 03:19.
-
As davexnet wrote, if you are referreing to the noise you can try something like TemporalDegrain2(degrainTR=3).
video comparison: comp.avi
image comparison: https://imgsli.com/MzAwMjUw
You could add some light sharpening after.
If you refer to the vertical clearer bar, it is in the source and difficult to remove. -
I understand the OP refers to these vertical patterns, present all over .... (enlarged x2).
[Attachment 82473 - Click to enlarge] -
Last edited by Selur; 26th Sep 2024 at 14:51.
users currently on my ignore list: deadrats, Stears555 -
Looks to me like noise was badly compressed, so I would mainly categorize this as compression artifacts.
-
Yes... but less visible. That was my point. I did not say, they were completely invisible on the fields... And I also did not say, that they were CAUSED by deinterlacing. Deinterlacing (or field-delay-correcting) clusters and increases the visibility. I had these very often, mostly with old recordings that were copied multiple times on multiple media, always with slight compression. So the original cause may be bad compressing in some state, that increased and clustered some noise, I agree to this.
-
Something like:
Code:edges = mt_edge(mode="hprewitt", thy1=50, thy2=50).Blur(1.0).Blur(1.0).ColorYUV(cont_y=500) Overlay(BilinearResize(width/2, height).Spline36Resize(width, height), last, mask=edges)
-
-
Yes. mt_edge() returns a map of sharp edges. Where there are sharp edges the map is white, otherwise black. Overlay() is used to restore the sharp edges from the original video onto a horizontally blurred version of the video. The edge map is used as an transparency map. Here's a slightly modified version of the script:
Code:LWLibavVideoSource("clip.mkv", cache=false, prefer_hw=2) vInverse() # blur away residual comb-like artifacts (time base errors, filtering errors) edges = mt_edge(mode="hprewitt", thy1=50, thy2=50, chroma="-128").ColorYUV(cont_y=500).Blur(1.0).Blur(1.0) Overlay(BilinearResize(width/2, height).Spline36Resize(width, height), last, mask=edges)
[Attachment 82616 - Click to enlarge]Last edited by jagabo; 2nd Oct 2024 at 18:08.
Similar Threads
-
How do we identify that videos filtered by QTGMC?
By Sach3932 in forum RestorationReplies: 28Last Post: 25th Sep 2023, 13:30 -
Why are ALL optical drives now vertical?
By Bliznoo in forum DVD & Blu-ray PlayersReplies: 5Last Post: 2nd Oct 2022, 18:56 -
How do I remove these vertical lines?
By coolgit in forum RestorationReplies: 23Last Post: 3rd Aug 2021, 13:35 -
Vertical Wiggle
By Okiba in forum Capturing and VCRReplies: 36Last Post: 29th Sep 2020, 05:13 -
How to make vertical Subtitles?
By jsaechao1 in forum SubtitleReplies: 2Last Post: 12th Jun 2020, 14:07