ffmpeg.ken_burns
Operation: ffmpeg.ken_burns
Category: media
Tags: ffmpeg, video, animation
Create a zoompan animation from a still image
Runtime
Section titled “Runtime”Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)
Inputs
Section titled “Inputs”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
image_url | Asset | Yes | — | Input image URL |
Outputs
Section titled “Outputs”| Name | Type | Description |
|---|---|---|
url | Asset | Output video URL |
path | String | Local file path |
duration_secs | Number | Video duration |
Default Configuration
Section titled “Default Configuration”{ "duration_secs": 5.0, "resolution": "1080x1920", "zoom_factor": 0.15}import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow") .node("ffmpeg-ken-burns", "tool", (n) => n.config({ operation: "ffmpeg.ken_burns", // ... node-specific config }) ) .build();from fabric_platform import FabricClient
fabric = FabricClient(api_key="fab_xxx")
wf_id = fabric.upsert_workflow("my-workflow", nodes=[ { "key": "ffmpeg-ken-burns", "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": "ffmpeg-ken-burns", "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": "ffmpeg-ken-burns", "kind": "tool" }] }'