digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Restore, Filter, Improve Quality (https://www.digitalfaq.com/forum/video-restore/)
-   -   How can I improve quality of this video? (https://www.digitalfaq.com/forum/video-restore/11056-how-improve-quality.html)

LAZYWRITER 10-07-2020 12:02 PM

How can I improve quality of this video?
 
I am trying to build up my AviSynth skills (admittedly they are very basic at the moment) and would love any input on how I can improve a video I captured from VHS (Yes I used a TBC, did a lossless capture, etc).

10 second clip of said video (~300MB)

To me it doesn't look terrible given it's 20+ year age, but if there's any reasonable way I can clean it up further I'd love to learn how. So far all I'm doing with AviSynth is deinterlacing, cropping, and adding some borders. I'm also using a different audio track with sound I did some tweaks to. Here's the AviSynth script I have so far:

Code:

SetFilterMTMode("QTGMC", 2)


videoSource = FFVideoSource("<video.avi>")
audioSource = WavSource("<audio.wav>")

# Mux them together
AudioDub(videoSource, audioSource)

Crop(8,4,-8,-12)
AddBorders(8,5,8,5)

AssumeBFF()

QTGMC(Preset="Slower", Edithreads=2, FPSDivisor=2)

Prefetch(threads=16)

I tried using
Code:

EZDenoise=2.0, NoisePreset="Slow"
with QTGMC, though it didn't seem to make a huge difference.

If there are other filters I should try using, or anything else that looks like a blatant n00b mistake I'd love to hear about them. Thank you in advance!


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

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