Free

Image to Video

Turn a still image into a short MP4 clip with an optional caption.

Image to MP4Optional captionH.264 downloadFree

Source image

Drop or tap to upload

JPG, PNG, WebP · max 50 MB

Video

Your video clip will appear here

Frequently asked questions

Built with Pixeltable

Fact sheet

Last updated

Facts for Image to Video
ModalityVideo
InputsImage or text prompt
OutputsGenerated video
Computed columnVideo computed column; frames via frame_iterator
What updatesA new or changed row recomputes only that row. Unchanged rows stay cached.
Canonical docExtract video frames

Runnable sample

import pixeltable as pxt
from pixeltable.functions.video import frame_iterator

TableModel = pxt.model_base()

class Videos(TableModel, name='videos'):
    video: pxt.Video

class Frames(
    TableModel,
    name='frames',
    base=Videos,
    iterator=frame_iterator(Videos.video, fps=1),
):
    pass

More free tools

Browse all 28 tools