Hi. I have a 45 minutes interlaced (most likely telecined) Full HD NTSC MPEG2 video that looks quite good except some heavy blocking when the light is changing fast. I tried using DGIndex to get a d2v file but it looks scrambled in Avisynth.
So far I wrote this Avisynth script:
I used TFM/TDecimate, Deblock, QTGMC's noise reduction and I halved the resolution to reduce the blocking even more. Any way to improve this script? I want to get the best quality out of it to archive it instead of the original.Code:SetFilterMTMode("QTGMC", 2) LWLibavVideoSource("video.mkv") AssumeTFF() TFM() TDecimate() Deblock(quant=60) QTGMC(InputType=1, Preset="Medium", EzDenoise=3) Spline36Resize(960,540) Prefetch(threads=4)
+ Reply to Thread
Results 1 to 10 of 10
-
Last edited by elektro; 5th Aug 2021 at 19:20.
-
-
-
Now, how to improve that script?users currently on my ignore list: deadrats, Stears555, marcorocchini
-
-
Last edited by elektro; 7th Aug 2021 at 16:39.
-
Folks please to not quote the complete post of others unless it is necessary, it really makes it unnecessary hard to read this thread,.. Thanks!
users currently on my ignore list: deadrats, Stears555, marcorocchini -
-
Last edited by elektro; 8th Aug 2021 at 19:16.
-
Default setting
Code:LoadPlugin("i:\plugins\mvtools1.dll") LoadPlugin("J:\appz38\MeGUI-2715-32\tools\dgindex\DGDecode.dll") import("i:\plugins\TemporalDegrain.avs") mpeg2source("C:\Users\davex\Desktop\avs_test\video.d2v") assumetff() tfm().tdecimate() spline36resize(width/2,height/2) temporaldegrain()
Similar Threads
-
Fix a badly de-interlaced video (with avisynth if possible)
By Roemer in forum EditingReplies: 3Last Post: 26th May 2021, 07:18 -
Field Blending Fix in AviSynth (Script Advice pls)
By luciofulci in forum Newbie / General discussionsReplies: 14Last Post: 17th Jul 2020, 13:11 -
Combining audio and video in avisynth script
By killerteengohan in forum RestorationReplies: 1Last Post: 29th Dec 2018, 10:04 -
Help on a script that fix color only to specific frames of the video
By Altruo in forum RestorationReplies: 7Last Post: 23rd Jul 2018, 06:51 -
Need to change the saturation and gamma of a video with an AviSynth script
By synnchan in forum Newbie / General discussionsReplies: 9Last Post: 2nd Nov 2017, 14:06