This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Awfull clip from news broadcast fix
#17
The mov isn't interlaced, it seems to be telecined and 12000/1001 fps
so I would use:
clip = core.tivtc.TFM(clip) clip = core.tivtc.TDecimate(clip, mode=7, rate=11.9880, dupThresh=0.04, vidThresh=3.50, sceneThresh=15.00) # new fps: 11.988
or frame matching and frame reduction.

At a quick test I would add:
# Spot removal using SpotLess clip = SpotLess.SpotLess(clip, radT=3, rec=True, pel=1, mStart=True, mEnd=True, iterations=2)
at it to remove most of the scratches&co
Then I would add DeNoise->QTGMC->InputType=2, for some more cleanup and anti-aiasing.
# Denoising using QTGMC clip = qtgmc.QTGMC(clip, Preset="Fast", InputType=2, TR2=1, TFF=False, SourceMatch=0, Lossless=0, opencl=True)

Then I would think about replacing some of the frames with interpolations (wherever strong artifacts are that are in the surrounded by good frames). This should be done after the cleanup, so if you use Hybrid you might need to adjust the filter order for this.
If there are really ugly frames before or after a scene change I would add replace them with duplicates of the previous frame (using 'DuplicateFrames')

Additionally, I would throw some stabilization at it.

I would then play around with the setting of these filter to seem whether I can improve that.
Also, I would try throwing some machine learning stuff at it.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Offline between (including) 29th of June and 5th of July => RochHarz Festival
Reply


Messages In This Thread
RE: Awfull clip from news broadcast fix - by Selur - 28.05.2026, 17:35

Forum Jump:


Users browsing this thread: 2 Guest(s)