Skip to content

ffmpeg.thumbnail

Operation: ffmpeg.thumbnail
Category: media
Tags: ffmpeg, video, image

Extract a single frame from a video as a thumbnail

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
video_urlAssetYesVideo file URL/path
NameTypeDescription
urlAssetThumbnail image URL
pathStringLocal file path
{
"timestamp": "1.0"
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("ffmpeg-thumbnail", "tool", (n) =>
n.config({
operation: "ffmpeg.thumbnail",
// ... node-specific config
})
)
.build();