Hi, I have this vhs to DVD transferred movie. Can anyone suggest how to deinterlace it properly & improve picture quality ( clean up, sharpen ) using avisynth please. Maybe upscale to 720p, if picture not effected so much.
https://easyupload.io/cdf08g
+ Reply to Thread
Results 1 to 6 of 6
-
-
Script so far, is this the correct way:
Code:a = LWlibavAudioSource("G:\STAL PROJECT FILES\Demux files\VTS_01_1 T80 2_0ch 192Kbps DELAY 0ms.ac3") # get audio (decompressed to PCM) v = Mpeg2Source("G:\STAL PROJECT FILES\Demux files\VTS_01_1.d2v", Info=3) # get video AudioDub(v,a) # join audio and video together AssumeFPS(24.0, sync_audio=true) Crop(0, 130, -4, -126, align=false) AssumeTFF() ColorMatrix(mode="rec.601->rec.709") import("C:\Users\akuma\AviSynth+\plugins64+\RemoveDirtMC.avs") QTGMC(preset="Fast", FPSDivisor=2) RemoveDirtMC(15, false) SMDegrain(tr=3, thSAD=400, RefineMotion=false, contrasharp=false, interlaced=false, plane=4, prefilter=0, chroma=true, lsb=false, lsb_in=false, lsb_out=false, Show=false) nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=1280, fheight=588) aWarpSharp2(depth=3) Sharpen(0.30) AssumeFPS(24000, 1000, sync_audio=true) # audio sample rate reduced from 48000 to 46080 (lossless) SSRC(48000) # convert audio to 48000 Hz samples Prefetch(12)
-
As far as I can see, deinterlacing is not required because it's PSF (progressive segmented frame). If you Deinterlace to double rate, you'll see that both fields for each frame are the same. And of course there are no jaggies, despite lots of motion.
-
Oh okay, so no need to deinterlace then. Thanks
What can I do to improve picture and is there any filter which can stop the rare jumpy frames ? -
Some of the jitter is pretty bad. There are a couple of scripts may alleviate some of it:
Stab() and Depansafe()
Code:mpeg2source("C:\Users\davex\Desktop\avs_test\depan.d2v") qtgmc(inputtype=2,preset="medium") crop(0,124,-0,-122) depansafe(dxmax=4,dymax=4) crop(2,6,-4,-8)
Similar Threads
-
Help Improve VHS-C Video Quality
By Lioned in forum RestorationReplies: 10Last Post: 15th Jan 2024, 08:23 -
Help with AA and Sharpen Filter: Best one & best settings to "fake" upscale
By Platos in forum Newbie / General discussionsReplies: 3Last Post: 5th May 2023, 23:41 -
[After Effects] Directional sharpen effect for ae? Like PS "Smart Sharpen"
By zkri in forum EditingReplies: 2Last Post: 2nd Feb 2021, 07:59 -
Still some combs after deinterlace,how can I improve?
By hintlou in forum DVD RippingReplies: 4Last Post: 9th Feb 2020, 20:53 -
Still some combs after QTGMC deinterlace, possible to improve?
By Bencuri in forum Video ConversionReplies: 27Last Post: 31st Jan 2020, 08:58