I've tried tfm() with srestore(). I'm just not finding anything that works. It's the only episode of the entire DVD series that seems to be poorly encoded.
+ Reply to Thread
Results 1 to 6 of 6
-
-
Last edited by Sharc; 28th Mar 2025 at 00:32.
-
users currently on my ignore list: deadrats, Stears555, marcorocchini
-
Yes, there is only 1 clean field in 5, so you would expect to have residual blends
If pattern is consistent in this clip for the whole episode, you might be able to improve srestore results by subtracting an offset frame by some %, then adjusting the colors/levels to match . After srestore on this clip, every 2nd frame is still slightly blended
Depending on how the sample was cut, and if the pattern is consistent - you might have to adjust it and possibly include some scenechange logic. You might have to use other types of color or levels matching such as matchhistogram, colourlike etc... you have test it out
Code:BWDif(field=2) Srestore(23.976) o=last t=o.trim(1,0) overlay(o, t, mode="subtract", opacity=0.15) levels(0,1,218,0,255,false,true) ov=last interleave(o.selecteven, ov.selectodd)
-
This is amazing. Thank you so much. It's going to take me a minute to wrap my head around this. So this is actually removing blends by subtracting with an overlay. Why is the color/levels adjusted in that process? Also, is there a specific reason to use BWDif as a bob deinterlacer compared to another deinterlacer?
Again, thank you. This is why I love this forum. -
When you subtract something, the value becomes lower - so you expect the picture to become darker in the Y channel.
A compensatory adjustment is required for the adjusted frames, otherwise there will be a brightness change between adjusted frames and non adjusted frames, producing "flicker" . You can comment out the line and see difference.
Also, is there a specific reason to use BWDif as a bob deinterlacer compared to another deinterlacer?
Also, if the pattern is constant for the whole episode, it's probably better to use a SelectEvery call, than Srestore - because there is a chance SRestore might pick the wrong frames in some cases
Similar Threads
-
Weird frame blending question
By Anonymous87432 in forum Newbie / General discussionsReplies: 7Last Post: 25th Sep 2024, 19:30 -
Frame blending/ghosting - how do I remove it from a webrip video
By MTRX in forum RestorationReplies: 7Last Post: 25th Sep 2024, 15:36 -
Frame blending, restoring old anime
By ArcoCapaz in forum Newbie / General discussionsReplies: 5Last Post: 9th Apr 2023, 13:56 -
DVD with what appears to be frame blending
By ThaKarra in forum DVD RippingReplies: 8Last Post: 4th Dec 2021, 10:34 -
How to achieve frame-blending/motion blur?
By eko in forum Newbie / General discussionsReplies: 22Last Post: 29th Oct 2020, 09:36