All models
Media utilitiesv1.0.0

Extract Frame

Capture a still image from a video at a timestamp (ffmpeg)

4 inputsIMAGE
Extract Frame output

Frame grabbed at t = 1s

Run the node

VIDEO
0 – ∞FLOAT
Time (s)
TEXT
1 – 100INT
Quality (JPEG)
Sign in to run

Running a model executes it on your account. Browsing the catalog stays free and needs no account.

Output

Fill in the inputs and run the node to see its output here.

Run it from your code

The same node, called by id from any surface. Every tab pins extract-frame and passes the ports below. Full guide.

import { BlitClient } from "@blitflow/sdk";

const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });

const { outputs } = await runNode("extract-frame", {
  video: { ref: "https://..." },
  time: { value: 0 },
  format: { value: "png" },
  quality: { value: 90 },
});

Schema

Inputs

video*VIDEO
timeFLOAT
Time (s)
0
formatTEXT
png · jpeg
png
qualityINT
Quality (JPEG)
90

Outputs

imageIMAGE