Good morning,
I find myself facing a problem correctly deinterlacing a video in Megui. I tried to have the video analyzed by Megui or my usual deinterlacing methods (notably Tdeint) but nothing helps, each time, I end up with ghost images and when I analyze the frames, we see that there is a sort of aliasing in each deinterlaced frame (see image below).
- https://i.imgur.com/rsWlwqo.png
Could anyone suggest the best way to do this?
I am attaching a short extract.
Thanks.
+ Reply to Thread
Results 1 to 7 of 7
-
-
It's telecined film that has been blend deinterlaced. You can fix it with a filter like ExBlend() in AviSynth.
Code:LWLibavVideoSource("VTS_01_1.VOB") ExBlend(mode=0, pal=0, show=0) # unblend the blended frames vInverse() # reduce residual combing (from compression artifacts) TDecimate() # reduce 1 duplicate out of every 5 frames, restore original 23.976 film frame rate SMDegrain(thsad=500, tr=2, PreFilter=4) # general noise reduction
-
Thank you for your help Jagabo, however, I notice there are still ghost images after your treatment, I guess there is nothing we can do to remove them?
Moreover, I noticed that there are sometimes artifacts that appear from time to time, always in frames that have been deinterlaced.
- https://i.imgur.com/nkhO1QU.png
But apart from that, I am very happy with the script that you offered me and I thank you again. -
Sometimes the goal of restoration (what you have here, starting with damaged video) is to make it better, not make it perfect. Try for perfection, just be willing to accept limitations (ie, don't make "better not perfect" an excuse to accept crap).
Jagabo is an Avisynth wiz.Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Those problems are from compression artifacts in the source. The artifacts make in impossible to fully restore the frame original film frame.
That's why I used the strong temporal noise reduction of SMDegrain. It cleans up most of those artifacts (as well as the other noise). Here's the same frame, before and after SMDegrain:
[Attachment 76057 - Click to enlarge] -
Instead of SMDegrain using Vapoursynth with BasicVSR++ or some of the models that can be used through avs/vs-mlrt probably can clean up the source better adding some line darking would also help. (attached an example where I used BasicVSR++ adn some line darkening on jagabo firs output)
(sadly, there is no Exblend alternative for Vapoursynth)
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Staxrip deinterlace - extreme file sizes
By Traderbam in forum Video ConversionReplies: 16Last Post: 1st Aug 2023, 09:33 -
Deinterlace or not?
By leed17 in forum Newbie / General discussionsReplies: 5Last Post: 30th Sep 2022, 17:42 -
deinterlace help
By maudit in forum Newbie / General discussionsReplies: 7Last Post: 13th May 2022, 22:40 -
The best method to deinterlace these PAL videos?
By inter in forum Video ConversionReplies: 3Last Post: 13th Apr 2020, 21:16 -
1080i deinterlace
By max_cady in forum Video ConversionReplies: 4Last Post: 8th Apr 2019, 11:25