Slideshow from a list of images
Turn image URLs into a polished slideshow with transitions, captions and music.
The simplest useful automation: a list of image URLs in, a slideshow MP4 out. One scene per image, a transition between scenes, an optional caption, music underneath.
The pattern
Each image becomes a scene: the image as a full-bleed element, a caption, and
a transition describing how the scene enters from the previous one.
Generating the document from a list
The document is plain JSON — generate it from your data with a few lines:
Remember: element and scene ids must be unique across the movie (the generator
above derives them from the index), and slow Ken-Burns-style motion is just an
animation whose duration matches the scene length.
Uploading the images first
If your images aren't publicly hosted, push them through
POST /v1/assets: request a presigned upload slot, PUT
the bytes, then use the returned assetUrl as src.
Render
Exactly as in the quickstart — POST /v1/renders with
{ "movie": … }, then poll or use a webhook.