Compose and render a multi-track video using the Rendley engine. Supports clips, text, audio, transitions, effects, filters, and keyframe animations.
Timeout: 600s | Provider: triggerdev | Accepts: video
Request
curl -X POST https://api.rendobar.com/jobs \
-H "Authorization: Bearer rb_your_key" \
-H "Content-Type: application/json" \
-d '{
"type": "render.rendley",
"inputs": {},
"params": {
"width": 1920,
"height": 1080,
"clips": [
{
"type": "video",
"url": "https://cdn.rendobar.com/assets/examples/sample.mp4",
"startTime": 0,
"duration": 10
}
]
}
}'
Parameters
Background color in hex format
Array of clips to compose on the timeline
type
video | image | audio | text | lottie
required
Clip media type
Position on timeline in seconds
Trim from source start in seconds
Trim from source end in seconds
Clip position, scale, rotation, and opacity
Rotation angle in degrees
Opacity (0 = transparent, 1 = opaque)
Text clip properties (required when type is text)
Filter IDs to apply to this clip
Effect IDs to apply to this clip
Transitions between clips
Transition duration in seconds
Index of the outgoing clip
Index of the incoming clip
Custom fonts to load for text clips
Font weight (e.g. 400, 700)
Font style (e.g. normal, italic)
Subtitles to overlay on the composition
format
srt | vtt | ass
default:"srt"
Subtitle file format
Response
{
"data": {
"id": "job_abc123",
"status": "dispatched"
}
}