Skip to content

ffmpeg.caption_overlay

Operation: ffmpeg.caption_overlay
Category: media
Tags: ffmpeg, video, text

Overlay text caption at the bottom of a video

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

NameTypeRequiredDefaultDescription
video_urlAssetYesVideo file URL/path
caption_textStringYesCaption text to overlay
NameTypeDescription
urlAssetOutput video URL
pathStringLocal file path
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("ffmpeg-caption-overlay", "tool", (n) =>
n.config({
operation: "ffmpeg.caption_overlay",
// ... node-specific config
})
)
.build();