Run Multiple FFmpeg Commands
(Endpoint in construction - talk to us for early access at support@rendi.dev) Submit multiple FFmpeg commands based on the same input files for multiple processing. Running multiple FFmpeg commands is faster than running each command seperately because we re-use system and network resources between the multiple ffmpeg commands
Authorizations
API key required for authentication. Must be provided in the X-API-KEY header.
Body
Request model for submitting multiple FFmpeg commands.
This model allows submitting multiple FFmpeg commands that run in parallel, where each command can use the same input files to generate different output files. For example, this can be used to generate multiple versions of a video with different resolutions or formats in a single request.
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 commands list of strings using {{alias}} placeholders for input and output files
[
"-i {{in_1}} -vf scale=1280:720 {{out_1}}",
"-i {{in_1}} -vf scale=1920:1080 {{out_2}}"
]
Response
Response model containing a list of command IDs returned from a batch command submission.
This model is used to return the unique identifiers for multiple FFmpeg commands that were submitted together. The command IDs are returned in the same order as the original command submission order.
List of unique identifiers for the submitted FFmpeg commands, order by original commands order
[
"123e4567-e89b-12d3-a456-426614174000",
"987fcdeb-a89b-43d3-b456-789012345678"
]