Selur's Little Message Board
[HELP] Input resolution not divisible error - 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] Input resolution not divisible error (/thread-4380.html)

Pages: 1 2


RE: Input resolution not divisible error - Selur - 03.05.2026

You enabled "Filtering->Vapoursynth->Misc->Source->Convert to target color space after source filter" and that is what Hybrid does.
Angel

About your crash:
Create a written step-by-step which allows to reproduce your problem starting from a reset Hybrid an I can look into it.

Cu Selur


RE: Input resolution not divisible error - r3dfx - 05.05.2026

Wait... what? Early dementia is kicking in... I can't remember I ever touched that option, only source settings.

Of course disabling that fixed the error  Confused . Guess it was 4:1:1 -> 4:2:0 transformation that somehow messed with QTGMC despite later 4:2:2 requirement

Thank you once again!


RE: Input resolution not divisible error - Selur - 05.05.2026

The problem isn't QTGMC, but the forced conversion to YUV420.
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8)
Interlaced YUV420 requires mod4 height, which 486 is not.
For YUV422 mod2 is enough.

=> I'll add another sanity check to the next dev

=> uploaded a new dev, which should complain,..

Cu Selur