Skip to content

video.reframe_vertical

Operation: video.reframe_vertical
Category: video
Tags: ffmpeg, video, reframe, vertical

Convert horizontal clips to 9:16 vertical format

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

NameTypeRequiredDefaultDescription
clipsJSONYesArray of clip objects with ‘path’ field
NameTypeDescription
clipsJSONReframed clip objects with updated paths
clip_countNumberNumber of clips reframed
modeStringReframing mode used
{
"height": 1920,
"mode": "general",
"width": 1080
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("video-reframe-vertical", "tool", (n) =>
n.config({
operation: "video.reframe_vertical",
// ... node-specific config
})
)
.build();