Not generating Keogram timelapses #2335
-
|
Hi, I've had a recent bunch of issues generating timelapses that came after months of good operation. I have the ffmpeg logs generated but I don't get a log for the keogram/video timelaps generated at all (others are fine). Also worth noting the generation process never shows as ending (the others do and generate output location). indi-allsky_support_info_2025825_102727.txt Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
This is my fault. I replaced the image decoding with simplejpeg where previously it was using Pillow. Pillow automatically supports most image types, but simplejpeg only supports JPEG. I did not account for PNGs, so simplejpeg was just raising an exception. I have added the logic to use the correct decoding when PNGs are encountered. Merged #2336 |
Beta Was this translation helpful? Give feedback.
This is my fault. I replaced the image decoding with simplejpeg where previously it was using Pillow. Pillow automatically supports most image types, but simplejpeg only supports JPEG. I did not account for PNGs, so simplejpeg was just raising an exception. I have added the logic to use the correct decoding when PNGs are encountered.
Merged #2336