I have a series that has been improperly upscaled. there is a a lot of aliasing. What type of upscaling causes this and what's the best way to repair video like this? I've tried Santiag and DeBicubicResizeMT. Both give mediocre results but I don't know if I'm even approaching this properly.
+ Reply to Thread
Results 1 to 5 of 5
-
-
You should upload a video sample, not a single image.
The image looks like it was bob deinterlaced from a 480 line NTSC source. Given there's only one field to work with you get something like this:
[Attachment 86119 - Click to enlarge]
Upscaling back to HD:
[Attachment 86120 - Click to enlarge]
With AviSynth:
Code:LWLibavVideoSource("mpv-shot0001.jpg") ConvertToYV24() src = last DeLanczosResizeMT(720,240) # original field here Santiag(2,2) nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=1280, fheight=720) aWarpSharp2(depth=5) Sharpen(0.3) nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=1920, fheight=1080) aWarpSharp2(depth=5) Sharpen(0.3) # upscaled here
-
Something like this works pretty well:
Code:LWLibavVideoSource("clip.mkv") DeLanczosResizeMT(720,480) Santiag(2,2) # antialiasing nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=1920, fheight=1080)
Code:LWLibavVideoSource("clip.mkv") DeLanczosResizeMT(720,480) Santiag(2,2) # antialiasing QTGMC(InputType=2) nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=1920, fheight=1080)
You might try playing with some of the other downscalers like DeBicubicResizeMT(). Or scaling down to slightly smaller heights.
Samples of the two scripts attached.
Similar Threads
-
Fixing video that has already been improperly deinterlaced
By Master Tape in forum RestorationReplies: 2Last Post: 4th Mar 2025, 09:24 -
Shrinking Large Upscaled Video
By taigi in forum RestorationReplies: 10Last Post: 26th Dec 2024, 04:35 -
Fixing a telecined video that has been upscaled. Partially solved.
By LaserBones in forum RestorationReplies: 3Last Post: 7th Nov 2023, 10:42 -
Is there anyway to deinterlace upscaled video?
By LaserBones in forum Newbie / General discussionsReplies: 3Last Post: 29th Oct 2023, 06:36 -
HD Video likely improperly encoded. Lots of combing effects...
By Lathe in forum Video ConversionReplies: 2Last Post: 6th May 2023, 16:35