Selur's Little Message Board

Full Version: Input resolution not divisible error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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
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!
The problem isn't QTGMC, but the forced conversion to YUV420.
Code:
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
Pages: 1 2