Run FFmpeg Command
Submit an FFmpeg command for processing with input and output file specifications.
Authorizations
API key required for authentication. Must be provided in the X-API-KEY header.
Body
Request model for submitting a single FFmpeg command.
This model allows submitting an FFmpeg command with input and output file specifications. Input file aliases must start with 'in_' and direct to a publicly accessible file, and output file aliases must start with 'out_' and only name a file name to be created.
Dictionary mapping file aliases to their publicly accessible paths, file name should appear in the end of the url, keys must start with 'in_'. You can use public file urls, google drive, dropbox, rendi stored files, s3 stored files, etc. as long as they are publicly accessible.
{
"in_1": "https://storage.rendi.dev/sample/first-video.avi",
"in_2": "https://storage.rendi.dev/sample/second-video.avi"
}
Dictionary mapping file aliases to their desired output file names, keys must start with 'out_'
{
"out_1": "output_one.avi",
"out_2": "output_two.avi"
}
FFmpeg command string using {{alias}} placeholders for input and output files
"-i {{in_1}} -i {{in_2}} -filter_complex [0:v][1:v]hstack=inputs=2[v] -map [v] {{out_1}}"
Response
Response model for command submission.
Contains the unique identifier assigned to the submitted command that can be used to poll for status and retrieve results.
Unique identifier for the submitted command
"123e4567-e89b-12d3-a456-426614174000"