Tested tool guide
Tested browser tools
Checked August 16, 2026
What Animated WebP Maker does, with a checked example
This tool takes a batch of still images and encodes them, in the order given, as frames inside a single animated WebP (a RIFF container carrying an ANIM chunk plus one ANMF chunk per frame). Each frame gets its own display duration in milliseconds, and the whole sequence gets a loop count, with 0 meaning infinite. Frames are compressed individually, lossy or lossless. The detail people miss most: total playback time per loop is the sum of the per-frame durations, not a fixed frame rate, so three frames with very different durations will visibly stutter rather than play at a steady pace.
Worked example
A concrete input and expected output from the current implementation.
Input
3 images (frame1.png, frame2.png, frame3.png), durations set to 500 ms, 500 ms, and 1000 ms, loop count = 0
->
Expected output
one animated .webp with 3 frames playing at 500 ms, 500 ms, then 1000 ms, a total of 2000 ms per loop, repeating indefinitely
The tool writes one ANMF chunk per image in the order supplied, each carrying its own duration, and sets the ANIM loop-count field to 0 for infinite looping; per-loop time is just the sum of the three durations.