Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Which of the Vapoursynth color formats are supported by this filter? #5

Open
Selur opened this issue Aug 13, 2016 · 5 comments
Open

Comments

@Selur
Copy link

Selur commented Aug 13, 2016

Are all of the Vapoursynth color formats (http://www.vapoursynth.com/doc/pythonreference.html#format-constants) supported by this filter?
If not, which are?

@Selur
Copy link
Author

Selur commented Mar 4, 2017

Found an answer reading the source code:

if( vi.format->colorFamily != cmGray && vi.format->colorFamily != cmYUV )
throw bad_param{ "only planar YUV formats are supported" };
if( vi.format->bitsPerSample != 8 )
throw bad_param{ "only 8-bit formats are supported" };

=> Seems like only 8-bit formats are supported and GRAY8 are supported.

Would be nice if higher bit depth could also be supported.

@VFR-maniac
Copy link
Owner

I'm sorry, I currently cannot spend time for projects other than L-SMASH. I'm almost retired from this project.

@Selur
Copy link
Author

Selur commented Mar 4, 2017

No, problem thanks for letting me know. :)

@myrsloik
Copy link

@VFR-maniac @Selur I've created a branch with all the fixes applied and will at least maintain it with bug fixes from now on then. And provide compiled binaries.

@Selur
Copy link
Author

Selur commented Jan 10, 2018

Top! Thanks! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants