What Avisynth filter + settings would you recommend to best fix this chroma issue (especially the red color shifting from the mic)? I included a sample from the original (interlaced AVC) and a sample with a deinterlaced version with QTGMC Preset Slow (progressive AVC). Thanks.
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!
+ Reply to Thread
Results 1 to 5 of 5
Thread
-
-
Your source is messed up. The chroma of two fields has been blended together -- but not fields from the same frame. And weirdly, the chroma is BFF whereas the luma is TFF.
Code:LWLibavVideoSource("interlaced.mp4", cache=false) l = AssumeTFF().SeparateFields() c = AssumeBFF().SeparateFields() MergeChroma(l, c) StackHorizontal(GreyScale, StackVertical(UtoY(),VtoY())) BilinearResize(width/2, height)
[Attachment 60263 - Click to enlarge]
I don't think there's any fixing this. -
-
Reversing the field order of the chroma keeps the chroma closer to the luma and less bouncy:
Code:LWLibavVideoSource("interlaced.mp4", cache=false) AssumeFPS(30000,1001) l = AssumeTFF().SeparateFields() c = AssumeBFF().SeparateFields() MergeChroma(l, c) Weave() QTGMC()
Similar Threads
-
audio issue not sure how to fix
By Ryan in forum AudioReplies: 8Last Post: 13th Aug 2020, 03:00 -
Removing Chroma
By cfelicio in forum RestorationReplies: 2Last Post: 3rd May 2020, 17:17 -
Avisynth fix Chroma artifacts in PAL DVD CGI cartoon
By Wizard81 in forum RestorationReplies: 1Last Post: 11th Oct 2018, 11:47 -
Fix VHS chroma 'floating'
By rds11 in forum RestorationReplies: 5Last Post: 20th Aug 2017, 20:23 -
Issue when playing the point of joint of two video segments. How to fix it?
By cypherinfo in forum EditingReplies: 2Last Post: 16th Apr 2017, 17:58