video.reframe_vertical
Operation: video.reframe_vertical
Category: video
Tags: ffmpeg, video, reframe, vertical
Convert horizontal clips to 9:16 vertical format
Runtime
Section titled “Runtime”Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)
Inputs
Section titled “Inputs”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
clips | JSON | Yes | — | Array of clip objects with ‘path’ field |
Outputs
Section titled “Outputs”| Name | Type | Description |
|---|---|---|
clips | JSON | Reframed clip objects with updated paths |
clip_count | Number | Number of clips reframed |
mode | String | Reframing mode used |
Default Configuration
Section titled “Default Configuration”{ "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();from fabric_platform import FabricClient
fabric = FabricClient(api_key="fab_xxx")
wf_id = fabric.upsert_workflow("my-workflow", nodes=[ { "key": "video-reframe-vertical", "kind": "tool", },])use fabric_sdk::FabricClient;
let client = FabricClient::new("http://localhost:3001", api_key)?;
let wf_id = client.upsert_workflow("my-workflow", serde_json::json!({ "nodes": [{ "key": "video-reframe-vertical", "kind": "tool" }]})).await?;curl -X POST http://localhost:3001/v1/workflow-definitions \ -H "Authorization: Bearer $FABRIC_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "my-workflow", "nodes": [{ "key": "video-reframe-vertical", "kind": "tool" }] }'