I need an animation format to store transparent (RGBA) images used in C#. Requirements:
- Alpha channel support
- Random access to frames
- C# support ideally
I've checked WebP and APNG, but there is no random access (because of the "relative-to-previous" frame rendering). And I can't use any video format because I need to playback faster/slower and the loading of video takes ages (can't play immediately after load).
Edit 1: I need to play the animation at variable speed (that's why need random access).