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
| Modality | Video |
|---|---|
| Inputs | Image or text prompt |
| Outputs | Generated video |
| Computed column | Video computed column; frames via frame_iterator |
| What updates | A new or changed row recomputes only that row. Unchanged rows stay cached. |
| Canonical doc | Extract 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),
):
passRelated tools
- AI Image Generator
Modality: Image
Computed column: Image generation stored on the row
Docs - Video Format Converter
Modality: Video
Computed column: In-browser ffmpeg.wasm; the file never becomes a Pixeltable column
Docs