I have some videos, which seems to be that someone who converted these videos from interlaced ones to progressive, forgot to add deinterlacing into a process.
As result now video is progressive, but "lines" in motion are still present.
There are similar topic, and no simple solution in every situation.
Video has no/minimal artifacts when player window is downscaling movie, but when its 1:1 - issues are eye catching.
Files are NSFW, and I made SFW 5 seconds sample, to represent problem.
Here is comparison - https://forum.videohelp.com/images/imgfiles/ptWAEow.png both files are stored on different sites, and you can see that an approach in converting them is different.
So what I'm asking for, what are main steps would be, to re-encode video and get rid of interlaced video artifacts? (If it's possible)
+ Reply to Thread
Results 1 to 5 of 5
-
-
In the top image the interlaced video was scaled without consideration of the interlacing. The two fields can no longer be cleanly separated. About the best you can do is blur them together to look like the bottom image.
-
-
Reduce the frame size to half height, back to full height, then add a slight vertical sharpen. Just the top half of the image:
I did that with AviSynth:
Code:BilinearResize(width, height/2) # half height Spline36Resize(width, height*2) # back to full height Sharpen(0.0, 0.7) # restore some sharpness, only in the vertical direction
Depending on the video, you may have to use a smaller or larger size for the downscaled frame. And different scaling filters deliver different sharpness (bilinear is rather blurry, spline36 is pretty sharp),Last edited by jagabo; 18th Jul 2018 at 11:34.
-
Tried virtualdub, resize precise-bicubic 50% + resize 200% + some sharpen, and result is "okay" but for now I don't know for sure, if I like it.
At the moment, I don't want to install some BIG video editors like PremierePro,... I will try to get decent quality with available software, like VirtualDub/Avidemux.Last edited by TempUser_; 18th Jul 2018 at 12:51.
Similar Threads
-
Interlacing artifacts when changing size of interlaced video
By Bencuri in forum Video ConversionReplies: 25Last Post: 25th May 2017, 21:03 -
how do i use ffmpeg to see if a video is interlaced or progressive ??
By oduodui in forum EditingReplies: 3Last Post: 30th Jun 2015, 06:33 -
Determining if video is progressive or interlaced
By SameSelf in forum Video ConversionReplies: 10Last Post: 9th Mar 2015, 03:13 -
Interlaced scanning, progressive video?
By hello_hello in forum Video ConversionReplies: 23Last Post: 4th Nov 2014, 17:38 -
Are my video clips interlaced or progressive? Can somebody advise?
By DJBoshh in forum Newbie / General discussionsReplies: 49Last Post: 10th Jan 2014, 11:14