digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Capture, Record, Transfer (https://www.digitalfaq.com/forum/video-capture/)
-   -   Bad image quality due to hardware? What can be solved digitally? (https://www.digitalfaq.com/forum/video-capture/10332-bad-image-quality.html)

CDM Uruguay 02-04-2020 02:34 PM

Bad image quality due to hardware? What can be solved digitally?
 
2 Attachment(s)
Hi everyone, this is a first post. Thanks in advance for your time and for everything that has already been written in this site, which is outstanding.

We're an archival institution and we're starting to work with VHS digitalization. Our current setup (not a decent one, I know) is the following:
- Panasonic NV-FJ610 PAL-N/NTSC VHS VCR
- Elgato video capture card
- HP laptop; Intel core i5; 8 GB RAM; Win 10 Pro 64 bits
- Virtualdub 1.10.4 capture software


Attached are two examples of recent captures.

I can see a lot of problems in the digitized material: horizontal lines (kind of "jagged" borders, interlace artifact?) that are more noticeable with movement; color (¿red?) "bursts" that are very noticeable in skin tone; some kind of chromatic aberration noticeable in the guitar frets; noisy shadows (in the background curtain), etc.

So, I would like to ask you:

1- What are those problems observed?
2- Which of those problems are hardware related and which are related to other motives (VHS condition, original recording/re-recording, etc)?
3- Finding proper hardware is not easy, and it is even more difficult in my country. So, can we improve the capture results in any way with our current setup? (We will keep searching for better hardware in the meantime).
4- Can we improve those results with digital processing?

Thanks again, and congratulations on your work.

themaster1 02-04-2020 03:56 PM

note: for PAL-N VHS Virtualdub capture example 1.avi only, i haven't checked the other.

it looks like a combination of artifacts to me: 1) oversaturation , 2) chroma noise 3) Y/C crosstalk

A good site to assist you on video artifacts (with pictures examples and solutions) can be found HERE (AV Artifact Atlas)

the 1) & 2) can be fixed with an avisynth script (it'll not be better than a good TBC or dvd recorder imo)
For the 3) i think F1Quiver (avisynth filter) can fix that
Code:

AVISource("PAL-N VHS Virtualdub capture example 1.avi")
assumetff()
# REMOVE CHROMA NOISE  (SPATIAL AND TEMPORAL)
ConvertToYV16(interlaced=true)
orig=last
ev=orig.assumetff().separatefields().selecteven()
od=orig.assumetff().separatefields().selectodd()
ev
ue_chroma = UToY(ev).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
ve_chroma = VToY(ev).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
YToUV(ue_chroma, ve_chroma)
MergeLuma(ev)
ev_filtered=last
od
uo_chroma = UToY(od).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
vo_chroma = VToY(od).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
YToUV(uo_chroma, vo_chroma)
MergeLuma(od)
od_filtered=last
interleave(ev_filtered,od_filtered)
assumefieldbased().assumetff().weave()
converttoyv12(matrix="Rec601",interlaced=true)
tweak(sat=0.8,coring=false) # FIX OVERSATURATION
QTGMC( "fast", TR0=1, TR1=1, TR2=1, EdiThreads=4) #  TO DEINTERLACE
SelectEven() ##  TO DEINTERLACE / keep normal frame rate

before/after

traal 02-04-2020 04:49 PM

Some aggressive temporal smoothing would also help a lot.

I see some strange periodic horizontal noise, I wonder if the VCR needs to be recapped? There's also some horizontal jitter, you'll need a VCR with line TBC to fix that, unless again bad capacitors in your VCR are causing it. Could you try another VCR and see if you get the same results?

sanlyn 02-04-2020 05:59 PM

Thank you for the samples.

1. Your video samples have been converted to RGB32. If you had saved them properly as YUY2, they would each be less than 70 MB in size. See How to make lossless samples. If you are capturing to RGB32, please note that it's not recommended for VHS.

2. Don't waste time and money on Elgato. If you went to a website that suggested Elgato, don't go there any more.

3. Interlace artifacts? Do you mean interlace combing? Computer monitors and PC video editors don't deinterlace, PC media players do, and TV and set-top players.

4. Unless this is badly damaged tape or a poor player, you should not see chroma flicker, distorted color, herringbone noise, or dot crawl.

5. Over saturated red, orange, yellow. It can be fixed in post processing, but converting to RGB32 without proper YUV controls makes it look worse.

6. There's a lot of seriously bad horizontal ripple in the samples. If your player has a line tbc, it isn't doing anything. If you don't have a line tbc either built-in or as pass-thru, I'm afraid you're going to need one. A line-levl tbc is not optional with VHS. It's a basic requirement.

Cleaning up VHS captures should not be this much work.

I'm sorry to say I don 't have the slightest idea why your example #2 is monochrome.

msgohan 02-04-2020 09:37 PM

I think a lot of these video issues could be fixed with an appropriate line TBC passthrough.

Audio
Clip 1: The clicks in the Hi-Fi audio are troublesome. The click at 0:05 happens at the same time as a video dropout, so I guess that's the cause of it.
Clip 2: Linear audio. :(

Quote:

Originally Posted by sanlyn (Post 66415)
I'm sorry to say I don 't have the slightest idea why your example #2 is monochrome.

I can't tell if this is a joke. Except for the blue logo @ top right, it's very, very under-saturated. But it's certainly in color.

josem84 02-05-2020 11:37 AM

Quote:

Originally Posted by sanlyn (Post 66415)
3. Interlace artifacts? Do you mean interlace combing?

Do not assume that everybody posting on this site is a video pro...?
Not everybody knows what interlacing is...

sanlyn 02-05-2020 12:22 PM

Quote:

Originally Posted by josem84 (Post 66462)
not everybody knows what interlacing is...

Sorry for the misunderstanding.
Computers and PC monitors are 100% progressive hardware.
Many people are familiar with progressive PC's nature but sometimes forget to take notice of it.

An interlaced frame contains two different images from two instances in time. When the interlaced frame is played on a deinterlacing device, each frame is separated and is displayed at two different instances. On hardware that does not deinterlace, you will see both images at the same time in the same frame. The reason you don't usually see interlaced combing on internet websites like YouTube is because interlaced video isn't allowed on the internet because, for one thing, internet players can't deinterlace. The reason you sometimes do not see interlace combing when using a PC media player or DVD player is because many media players do properly deinterlace if they detect interlaced video.

If you don't understand interlacing, I can appreciate that. The internet has thousands of free websites that explain and illustrate it. Our original capture guide also explains it, in the article "Understanding Your Source". :)

Most readers here are not professionals, including myself.

josem84 02-05-2020 12:25 PM

Quote:

Originally Posted by sanlyn (Post 66465)
If you don't understand interlacing,

I know what interlacing is... you should quote the OP and explain that to him. :)

sanlyn 02-05-2020 01:04 PM

Sorry, the way your post was written I assumed you didn't know what interlace was. If I mistook your meaning, I stand corrected. I think the OP can get more information from my post.

CDM Uruguay 02-05-2020 01:17 PM

Thanks "themaster1", "traal", "msgohan" and "josem84" for your promt and constructive responses.

admin 02-05-2020 11:56 PM

Quote:

Most readers here are not professionals, including myself.
BTW, the OP is a professional, it was literally his/her username:
CDM Uruguay (Centro Nacional de Documentación Musical Lauro Ayestarán), www.cdm.gub.uy

They apparently primarily deal with film sources. And are they are moving into VHS work, which is the reason for this thread.

And as such, he/she should be extended professional decorum. Unnecessary comments and banter have therefore been removed, those posts edited.

While disagreements on the site are fine, you must refrain from doing so with excessive snark.

Also remember that members ask questions because they do not know the answers. And this is why the forum is here. Questions (posts) are encouraged. After many years of Q&A, this site has literally become an FAQ for video/photo/web, as our name suggests (The Digital FAQ). Sometimes members even assume they know something, and must be corrected. All of this should happen within the confines of amicable discussions, not using words that chastise or mock. Certainly not with language that would make members feel unwelcome.

See also: http://www.digitalfaq.com/forum/news/6-forum-rules.html

Thanks, and carry on. :)


All times are GMT -5. The time now is 07:11 AM

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.