render_video_clip.complete
Webhook event for Render Video Clip
body:
has the same content you would receive when you fetch the media using the Check Render Status API.
The schema is of type object
.
Was this page helpful?
Copy
{
"event": "render_video_clip.complete",
"body": {
"crop": {
"enabled": false,
"aspect_ratio": "16:9",
"smart_crop": false
},
"status": "complete",
"render_id": "<string>",
"source_clip": {
"start_time_ms": 123,
"end_time_ms": 123,
"clip_id": "<string>",
"duration_ms": 123,
"source_media": {
"status": "complete",
"media_id": "<string>",
"media_url": "https://storage.xyz/media.mp4",
"media_info": {
"type": "video",
"duration_ms": 123,
"fps": 123,
"frame_count": 123,
"width": 123,
"height": 123,
"channels": 123
}
}
},
"rendered_media": {
"status": "complete",
"media_id": "<string>",
"media_url": "https://storage.xyz/media.mp4",
"media_info": {
"type": "video",
"duration_ms": 123,
"fps": 123,
"frame_count": 123,
"width": 123,
"height": 123,
"channels": 123
}
},
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"complete"
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.