Skip to content

video.extract_clips

Operation: video.extract_clips
Category: video
Tags: ffmpeg, video, clip

Extract precise clip segments from a video at given timestamps

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

NameTypeRequiredDefaultDescription
video_pathStringYesSource video path
clipsJSONYesArray of {title, start, end, hook_text} objects
NameTypeDescription
clipsJSONArray of extracted clip objects with paths
clip_countNumberNumber of clips extracted
{
"codec": "libx264",
"crf": "22",
"preset": "fast"
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("video-extract-clips", "tool", (n) =>
n.config({
operation: "video.extract_clips",
// ... node-specific config
})
)
.build();