![]() |
[HELP] Force Deinterlace - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: [HELP] Force Deinterlace (/thread-1510.html) Pages:
1
2
|
RE: Force Deinterlace - Selur - 21.08.2020 I think I fixed the problem with the interlaced handling. Will send you link to a dev version for testing in ~1/2hr via PM. Okay, scratch that. You disabled PMs so no link. Cu Selur RE: Force Deinterlace - MixMaker - 22.08.2020 (21.08.2020, 16:31)Selur Wrote: I think I fixed the problem with the interlaced handling.Hello Selur: Thanks for looking into this (and fixed it). On the other side, I wasn't even aware that I've disabled PM's, I'm sorry. They're active now and would love to put my hands on that dev version. Cheers. RE: Force Deinterlace - MixMaker - 26.08.2020 Hello Selur: I've doing some tests on the DEV version you kindly sent me, and the error when encoding interlaced material using the DNxHD 145 profile is gone and encoded without a glitch, but now the conversion to output PAR to 1:1 seems to be broken, instead of 1440 always shows 1620 px in target resolution when the height is upscaled to 1080 resulting in a distorted picture. On the other hand, if I try to IVTC an eligible source with filmdint or VIVTC (Vapoursynth) and use the DNxHD 115 or 175 profile to encode at 23.976, it just simply fails. Cheers. RE: Force Deinterlace - Selur - 26.08.2020 Would need a separate debug output of each of the issues to say anything about it. ![]() Cu Selur RE: Force Deinterlace - MixMaker - 28.08.2020 (26.08.2020, 20:22)Selur Wrote: Would need a separate debug output of each of the issues to say anything about it. Alright, I hope I did this debug output well. What I wanted to do is IVTC this SD interlaced source, upscale to 1080p and encode with DNxHD to 23.976 fps using profile 175. Failed. Notice the conversion of output PAR to square pixel (1:1) also failed. Thanks. RE: Force Deinterlace - Selur - 28.08.2020 Seems like the Vapoursynth script is fine: # Imports Problem is that the ffmpeg call is broken: Quote:ffmpeg -y -noautorotate -nostdin -threads 8 -f yuv4mpegpipe -i - -an -sn -vf zscale=rangein=tv:range=tv -pix_fmt yuv422p -vsync 0 -vcodec dnxhd -profile:v 0 -b:v M -mbd 0 "D:\Working BluRay\Pat Benatar - Love Is A Battlefield (1983)_2020-08-27@20_50_55_6010_07.mov"It contains an 'M' instead of the bitrate which causes: [dnxhd @ 0000022f8573e000] [Eval @ 0000005eafdfe400] Undefined constant or missing '(' in 'M' -> will look at it, after work. Cu Selur RE: Force Deinterlace - MixMaker - 28.08.2020 Thank you. Quote:Don't see any indication that there is a problem with ... or the resizing. I'm a bit of confused here, when converting the output of a 720x480 source to PAR 1:1 the weight shouldn't be 1440 instead of 1620 px as it is showing in the log? In fact, the resulting encode looks stretched. ![]() RE: Force Deinterlace - The_Tinkerer - 28.08.2020 Removing the "Force" option for deinterlacing does impact the functionality of the program. For example, QTGMC has options for video that is not interlaced. (It even has InputType=1 for progressive input, where it only does denoising.) If I want to resize the video via Spline144 resize BEFORE running QTGMC (i.e., move "resize" to top in Custom Filter Order), without the "Forced" option, Hybrid will insert the following: # deinterlace since the filter does not support interlaced content So, I can't use QTGMC after resizing without Hybrid mucking with the script. In previous versions, I could simply use the "Force" option, and the script is the same, but without the above unwanted stuff being inserted. So the program is less functional with "Force" removed. I have to use previous Hybrid versions if I want to resize, THEN run QTGMC in modes 1, 2, or 3. RE: Force Deinterlace - Selur - 28.08.2020 Quote:# deinterlace since the filter does not support interlaced contentHappens since Hybrid assumes that 'Spline144Resize' is not able to resize interlaced content. So what it does it: Deinterlace, apply the filter an reinterlace. Alternatively it could separate the source into field, resize the fields and then weave the fields again. (This is can be enabled through 'Filtering->Avisynth->Misc->Interlaced Handling->Separate fields for interlaced content') This is the correct behavior and is totally unrelated to the force deinterlacing option. Cu Selur |