The following warnings occurred: | |||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.3.12-nmm1 (Linux)
|
[BUG] Maintaining Interlace On Output - 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: [BUG] Maintaining Interlace On Output (/thread-2499.html) |
Maintaining Interlace On Output - Analog - 19.04.2022 Hi Selur, I recently upgraded to 2022.03.20.1 and have been having issues maintaining interlace (interlaced input -> interlaced output) when I convert from uncompressed YUV to FFV1. (I have not tried changing those parameters) [*]What Hybrid version did you use?(Windows/Mac/Linux 32/64bit + versions number) Hybrid 2022.03.20.1; Windows 11 x64 build 22000 [*]What did happen? If an error message came up what did it exactly say? When starting encoding a box that says "Aborting: Encoding is set for progressive output, but the input is not progressive!" [*]What did you do to get to the bug? (best thing is a detailed step-by-step guide so that I can reproduce the problem) Set video processing to FFV1, output to local output, disable de-interlacing, import video, begin encoding. [*]Debug output would be helpful:
[*]a small sample, which allows the reprocudtion of the problem would be nice Sample file in attached link. Overriding input scan type to bottom field first does not appear to help... Perhaps I am losing my mind here but please help! I can not seem to attach any files so I've attached everything as a ZIP at this Google Drive link: https://drive.google.com/file/d/1FYDTCbgWFSLaqDtzIObUyLlPwFDGOOda/view?usp=sharing Thanks for your time! RE: Maintaining Interlace On Output - Selur - 19.04.2022 Problem is probably that FFV1 does not specifically support interlaced content, iirc. FFV1 can save interlaced content while maintaining the interlaced structure, but everything is flagged as progressive. -> I'll look into skipping that check for ffv1 after work today. Side note: "disable de-interlacing" is probably the wrong approach, normally one would overwrite the scan type. Cu Selur RE: Maintaining Interlace On Output - Analog - 19.04.2022 (19.04.2022, 07:27)Selur Wrote: Problem is probably that FFV1 does not specifically support interlaced content, iirc. FFV1 can save interlaced content while maintaining the interlaced structure, but everything is flagged as progressive. Thanks for the fast reply as always! Sounds good. I wouldn't have an issue if there is a "support interlace on unsupported formats" checkbox or setting if that would be a good compromise. Interesting to note FFV1 doesn't have interlaced content in it's specs. I've been using it with Hybrid for (literally) years with no issues playing back on programs like MPC-HC. Do you believe it's a bad format to use for lossless archival of interlaced content? Also, thanks for the note regarding "disable de-interlacing." I figured I should disable it and let it follow the scan order defined in the input file. Is it better to define the scan order for a reason other than to ensure an input file with a bad header wouldn't be considered progressive? RE: Maintaining Interlace On Output - Selur - 19.04.2022 No, FFV1 isn't a bad archival format, it just doesn't differentiate between interlaced and progressive data. The best way to fix this is for me to add a dummy selection to the FFV1 encoder which lets the user decide whether wants interlaced or progressive data to be saved. Since this will influence how Hybrid does filtering. If you don't do any filtering overwriting the input scan type to progressive should be fine too. Cu Selur RE: Maintaining Interlace On Output - Selur - 19.04.2022 Send you a link to a dev version which allows to set Interlaced for FFV1, so if you want to output interlaced, make sure to enable it in the FFV1 settings. Cu Selur RE: Maintaining Interlace On Output - Analog - 19.04.2022 Hi Selur, I tried the 2022.04.19.1 release you sent me. It no longer shows the progressive popup, but it is still not working unfortunately. If I load my video, and leave FFV1 as defaults (4:2:0, 8-bit), I get an "Illegal output resolution (720x486). Interlaced YUV420PX requires mod4 compatible height." error. I've been using these sources to create interlaced FFV1 files for ages so I'm not sure why I'm getting called out for a non mod4 resolution now. If I change the output format to 4:2:2 10-bit as I usually do to match the source, I get no popup error but no job is created and no encoding is attempted. If I add audio encoding, Hybrid outputs a 75-ish KB file with a dummy header containing only audio information. I've attached an updated zip here: https://drive.google.com/file/d/1tjTDaRDb52HMRhf3rMHk55iN0LGwfrve/ Thanks again for your help & time. RE: Maintaining Interlace On Output - Selur - 19.04.2022 Quote:If I load my video, and leave FFV1 as defaults (4:2:0, 8-bit), I get an "Illegal output resolution (720x486). Interlaced YUV420PX requires mod4 compatible height." error. I've been using these sources to create interlaced FFV1 files for ages so I'm not sure why I'm getting called out for a non mod4 resolution now.This is correct. YUV4:2:0 interlaced needs to be mod4. This did not happen before since you basically overwrote the input scan type to progressive, which is fine if you don't do any filtering. Quote:If I change the output format to 4:2:2 10-bit as I usually do to match the source, I get no popup error but no job is created and no encoding is attempted.My guess is that I broke something for the job creator by adding the interlaced workaround. -> looking into it RE: Maintaining Interlace On Output - Selur - 19.04.2022 Found the issue made a typo which basically disabled all job generation for jobs where FFmpeg is used as decoder and encoder at the same time. -> compiling a new version will send you a new link in ~10min. Cu Selur RE: Maintaining Interlace On Output - Selur - 19.04.2022 send pm with new link going to bed now if it doesn't work I can look at it tomorrow after work Cu Selur RE: Maintaining Interlace On Output - Analog - 19.04.2022 Hi Selur, I've got good news! Your latest update works perfectly! The output is exactly what I expected. Hopefully this will let you sleep a bit more peacefully tonight. Thanks again for your help & incredibly fast solution to this matter! (19.04.2022, 21:02)Selur Wrote:Quote:If I load my video, and leave FFV1 as defaults (4:2:0, 8-bit), I get an "Illegal output resolution (720x486). Interlaced YUV420PX requires mod4 compatible height." error. I've been using these sources to create interlaced FFV1 files for ages so I'm not sure why I'm getting called out for a non mod4 resolution now.This is correct. YUV4:2:0 interlaced needs to be mod4. This did not happen before since you basically overwrote the input scan type to progressive, which is fine if you don't do any filtering. Ah, that makes sense thinking about subsampling... I guess that's why DVD is 720x480 instead of 486! |