This does not look like a simple shift them over a tad with chroma shifting. They seem out of place almost as if the Blu-Ray was scaled badly or something. Its very easy to notice especially near black lines.
(Image Removed)
I tried chroma sharpening with mergechroma(awarpsharp2(depth=10)). It seems to help some but it does not exactly fix the issue.
Does anyone whats up with this or how to adjust it better than just chroma sharpening it?
+ Reply to Thread
Results 1 to 4 of 4
-
Last edited by killerteengohan; 23rd Jan 2018 at 13:10.
-
That HD video looks liek it was upscaled from an analog SD source with low horizontal chroma resolution. You need to sharpen and shift the chroma horizontally. Something along the lines of:
Code:ImageSource("28My6hp.png", start=0, end=23, fps=23.976) ConvertToYV12() U = UtoY() U = U.BilinearResize(U.width/2, U.height).aWarpSharp(depth=10).nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=U.width, fheight=U.height) V = VtoY() V = V.BilinearResize(V.width/2, V.height).aWarpSharp(depth=10).nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=V.width, fheight=V.height) YtoUV(U, V, last) ChromaShift(c=-2)
Code:ImageSource("28My6hp.png", start=0, end=23, fps=23.976) ConvertToYV12() MergeChroma(last, BilinearResize(width/2, height).aWarpSharp(depth=10).nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=width, fheight=height)) ChromaShift(c=-2)
Of course, you might want to sharpen the luma too.Last edited by jagabo; 21st Jan 2018 at 20:52.
-
Is this good enough for this in your opinion?
Last edited by killerteengohan; 23rd Jan 2018 at 13:09.
Similar Threads
-
Staxrip 'Failed to open source, try another source filter?'
By hanaluluelle in forum Video ConversionReplies: 0Last Post: 1st Mar 2017, 01:44 -
Sync of video from one source to audio from another source (same content)
By tbbttbbt in forum AudioReplies: 2Last Post: 5th May 2016, 15:10 -
Chroma noise
By Tafflad in forum RestorationReplies: 16Last Post: 29th Feb 2016, 22:23 -
Is this true?Women see less colors than men, and they see washed out colors
By Stears555 in forum Off topicReplies: 5Last Post: 10th Jul 2014, 13:07 -
Dark Colors on source avi file.. how to make it brighter?
By night in forum Newbie / General discussionsReplies: 5Last Post: 10th Aug 2013, 08:50