View as Markdown
Renderio icon

Renderio ACTION

Run Chained FFmpeg Commands

Execute multiple chained FFmpeg commands sequentially with shared input and output file specifications. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Renderio account once, then configure and run Run Chained FFmpeg Commands from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "renderio-run-chained-ffmpeg-commands",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    renderio: { authProvisionId: "apn_xxxxxxx" },
    inputFiles: "Input File URLs",
    outputFiles: "Output File Names",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Run Chained FFmpeg Commands inputs
Property Type Description
inputFiles Input File URLs object
Dictionary mapping input aliases to publicly accessible file URLs. Keys must start with in_. Example: { "in_video": "https://example.com/video.mp4" }.
Required
outputFiles Output File Names object
Dictionary mapping output aliases to desired output file names. Keys must start with out_. Example: { "out_video": "output.mp4" }.
Required
ffmpegCommands FFmpeg Commands string[]
Ordered FFmpeg commands to execute sequentially. Use {{alias}} placeholders matching input keys such as in_video and output keys such as out_final. Example: ["-i {{in_video}} -vf scale=1280:720 {{out_scaled}}", "-i {{out_scaled}} -c:v libx264 {{out_final}}"].
Required
metadata Metadata object
Optional key-value metadata to attach to the command or preset execution. Example: { "job_id": "abc123" }.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
renderio-run-chained-ffmpeg-commands
Version
0.0.2
App
Renderio
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes