-
Notifications
You must be signed in to change notification settings - Fork 24
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
Can jpegxl_decode
decode multiple frames?
#32
Comments
It's on the TODO list: imagecodecs/imagecodecs/_jpegxl.pyx Line 517 in ddddb7b
There seem to be no API to obtain the number of frames other than decoding all frames and counting... |
Cool, thank you!
To be honest, that's fine for me. For my use-case, I'll always want to decode all the frames. So it would be great to be able to get all the frames back in one call to Thanks again for all your work on this! |
For reference: Questions about animated sequences. |
I got the decoding of JXL animations working with libjxl 0.6. The necessary API for encoding animations will be available in the next major release of libjxl (libjxl/libjxl#909). |
Oooh, that's super-cool, thank you! |
Thanks again for all your work on
imagecodecs
!Can
jpegxl_decode
decode multiple frames?If I've understood correctly,
jpegxl_encode
can encode multiple frames (in this loop). But I don't thinkjpegxl_decode
can decode multiple frames yet? Or have I missed something? 🙂The text was updated successfully, but these errors were encountered: