Add animated GIF output with parallelised frame quantization

Render an animated clct_animation.gif alongside the per-step PNGs.
Frames are loaded and colour-quantized in parallel via rayon, then
written sequentially with the gif crate.  Also converts timestamps
to CET/CEST using chrono-tz.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Schuwi
2026-03-06 22:53:49 +01:00
parent 0c73e04959
commit 764f4f6378
3 changed files with 150 additions and 4 deletions

View File

@@ -17,3 +17,6 @@ chrono = { version = "0.4", default-features = false, features = ["std", "cloc
anyhow = "1"
spade = "2"
rayon = "1"
image = { version = "0.25", default-features = false, features = ["png"] }
gif = "0.14"
chrono-tz = "0.10.4"