The logo and border are not important, but the artifact distribution are clues - because the halos around other objects , and if you check other scenes, are predominantly the same distribution. It suggests to me the settings are still slightly off
If you're happy that's all that matters . Personally I prefer fewer artifacts
+ Reply to Thread
Results 31 to 42 of 42
-
-
ah, I thought I was satisfied, but ringing effect looking much worse in 2:1 pixel match than 1:1 pixel match.
I guess height value is almost perfect, so I added some resizing option.. the s=0 parameter.
It reduced some halos, but it's not perfect..
is this the limit that I could be done?
here's my result.Last edited by sdx12349; 1st Nov 2025 at 18:40.
-
Besides fiddling with height and s, you can also try playing with the b,c settings
Otherwise you can try other adding other filters, AA, dehalo filters. There are dozens to choose from
Machine learning filters can definitely improve this, and there are many geared towards anime - However almost all will be trained on progressive images, not a field. If you separatefields, apply, then weave, there is a significant chance of distortions. You would need to IVTC, which you've made clear you don't want to do -
UPDATE: I FOUND THE PERFECT SOLUTION!!!
Descale Filter's DeBilinear function perfectly recovers 480i/486i SD Video that wrongly converted to 1080i..
Here's my code.
Code:LoadPlugin("LSMASHSource.dll") LoadPlugin("libdescale.dll") interlaced_clip = LWLibavVideoSource("in.mkv").ConvertToYUV444(interlaced=true, matrix="Rec709") top = interlaced_clip.SeparateFields().SelectEven() bottom = interlaced_clip.SeparateFields().SelectOdd() target_height = 243 top_descaled = top.DeBilinearResizeMT(720, target_height, src_height=target_height, src_top=0.5) bottom_descaled = bottom.DeBilinearResizeMT(720, target_height, src_height=target_height) final_video = Interleave(top_descaled, bottom_descaled).Weave().AssumeTFF() return final_video.ConvertToYV12() -
*gig* So, basically what poisondeathray suggested at the beginning you just changed 243 over 240,...
(since DeBilinearResizeMT has no temporal component, SeparateFields + Resize + Weave should be the same as what you do)
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
Good find sdx12349. 243 line fields makes sense since 486 line frames is fairly common for SD NTSC caps.
-
Yeah, if I just change 240 to 243, split top/bottom field and add src_top=0.5 in one of the top/bottom field in poisondeathray's first suggested script, then It is same...
But, Other resize filters aren't good. Only Descale Filters like DeBilinear was the most same as original video in my case.
other resize filters add ringing or aliasing effects.
and, final script that I wrote is still has problem like the Image below...
I think it's chroma problem, but I don't have an idea about how to fix it.
Can somebody solve this problem?Last edited by sdx12349; 1st Mar 2026 at 01:27.
-
which of the provided samples has this issue?
users currently on my ignore list: deadrats, Stears555, marcorocchini -
Attachment of this thread, starts "2 - 투니버스"
and this thread attachment, "학교괴담OP.ts" and "학교괴담ED.ts". -
ConvertToYV12() on the last line of your script should be ConvertToYV12(interlaced=true).
-
Sorry, can't help.
I looked at * "학교괴담OP.ts", "학교괴담ED.ts", "2 - 투니버스_20250809_235850.ts", "2 - 투니버스_20250809_235546.ts" and couldn't spot any such chroma issue.
¯\_(ツ)_/¯
well spottedConvertToYV12() on the last line of your script should be ConvertToYV12(interlaced=true).
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Demuxed video out of sync (480i 29.97)
By Galaxy Ranger in forum Video ConversionReplies: 1Last Post: 4th Nov 2024, 21:53 -
Can I convert 1080i to 1080p using TMPGEnc Video Mastering v.6?
By vhwul62 in forum Video ConversionReplies: 23Last Post: 20th Jul 2024, 10:34 -
Converting 1080P Back to Mini DV HDV in 1080i
By braxus in forum Video ConversionReplies: 5Last Post: 2nd Jul 2024, 17:26 -
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 -
Issues with converting .ts files
By Avskedsfest in forum Video ConversionReplies: 1Last Post: 20th Jan 2021, 08:17




Quote