I'm trying to fix the interlacing in this commercial and I'm certain it's been scaled.
I tried downscaling it to 480p before deinterlacing it and it seems to have helped, but I still have some artifacts.
Should I try a different resolution or is there a better solution to this?
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
-
-
If you're into AVISynth, have a go with PoisonDeathRay's script here:
https://forum.videohelp.com/threads/416119-Non-Removeable-Jaggies#post2752815
I tried it on your video and it cleared up the jaggies (every 4 fields in 10, by the looks), which seem to be burned in (open in Vdub, Deinterlace Yadif Double Rate BFF and step through).
I set the Spline64resize at the end back to 1280x720. It looks a bit softer (and the dog's head-swivel is a bit messy), better than it was though.
The PDR script I used (video only):
Code:LWLibavVideoSource("D:\VideoHelp\AstroseedP\Sonic꞉ 'Boom' [Vimeo].mp4") ConvertToYV16() Spline16Resize(400,300) santiagmod(3,3) QTGMC(inputtype=2) Spline64Resize(1280,720)
-
I don't think a different resolution will help. But this reduces the residual artifacts a bit more:
Code:LWLibavVideoSource("Sonic.mp4", cache=false, prefer_hw=2) AssumeTFF() DeLanczosResizeMT(last, last.width, 480) # from the ResampleMT package QTGMC(preset="fast") SelectEven() TDecimate(Cycle=5, CycleR=1) #SMDegrain(tr=2, thsad=2500, PreFilter=4)
With SMDegrain:
[Attachment 82869 - Click to enlarge] -
That's good, Jagabo, but it's stretched. Could we just do a spline64resize(1280,720) at the end?
-
Oops, I missed the last line when I copied and pasted. I used nnedi3_rpow2 but Spline64Resize is fine.
Similar Threads
-
I have video that I think was scaled from 1080i to 720p
By koberulz in forum Newbie / General discussionsReplies: 4Last Post: 18th Apr 2021, 08:21 -
OBS Output (scaled) Resolution
By Huckleberry in forum Capturing and VCRReplies: 5Last Post: 16th Jan 2021, 14:13 -
Fixing unmarked interlaced frames in h264 stream without re-encoding
By hedgehog90 in forum Newbie / General discussionsReplies: 9Last Post: 5th Jan 2021, 13:54 -
fixing mishandled interlaced video
By chisdchisdq in forum Video ConversionReplies: 2Last Post: 1st Oct 2020, 08:12 -
How do I modify scaled size of an H.264 encoded video?
By kfitfk in forum Video ConversionReplies: 2Last Post: 21st Oct 2019, 22:59