Skip to content

video.effects

Operation: video.effects
Category: video
Tags: ffmpeg, video, effects, filters

Apply FFmpeg filter effects to clips (zoompan, color, sharpen)

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

NameTypeRequiredDefaultDescription
clipsJSONYesArray of clip objects with ‘path’ and optional ‘effects’
NameTypeDescription
clipsJSONClip objects with updated paths after effects applied
clip_countNumberNumber of clips processed
{
"default_effects": "eq=contrast=1.1:brightness=0.02:saturation=1.2,unsharp=5:5:0.5"
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("video-effects", "tool", (n) =>
n.config({
operation: "video.effects",
// ... node-specific config
})
)
.build();