cURL
Python
JavaScript
PHP
Go
Java
curl --request POST \
--url https://api.video.dev/v1/clip/{ clip_id} /render_video \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"crop": {
"enabled": false,
"aspect_ratio": "16:9",
"smart_crop": false
},
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"complete"
]
}
}'
{
"crop" : {
"enabled" : false ,
"aspect_ratio" : "16:9" ,
"smart_crop" : false
} ,
"status" : "processing" ,
"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" : "processing" ,
"media_id" : "<string>"
} ,
"webhook" : {
"url" : "https://system.new/webhook/v1" ,
"events" : [
"complete"
]
}
}
Webhooks
Webhooks allow video.dev
to notify your API when results are ready.
This eliminates unnecessary requests made by polling, and can get results back faster.
Webhooks can be registered as part of the request and various events can be subscribed
to get status of .
The following is a full list of all webhook events which can be subscribed.
Event Description complete Occurs when a new clips are available error Occurs when auto clip creation has errors
The webhook will be POST to the URL you provided with a JSON payload.
The payload will contain the event type and the details associated with the event.
Whether to perform cropping
Available options:
1:1
,
4:3
,
3:4
,
4:5
,
5:4
,
9:16
Auto-picks the main subject to focus on while cropping.
Callback to listen for events
Example: "https://system.new/webhook/v1"
Available options:
complete
,
error
Render Clip initiated successfully
Available options:
complete
,
processing
,
error
Reference id to check render status
source_clip. start_time_ms
Start time (milliseconds) of clip in source media
End time (milliseconds) of clip in source media
Duration of the clip in milliseconds
Source media to create clip from
source_clip.source_media. status
Available options:
complete
,
processing
,
error
source_clip.source_media. media_id
source_clip.source_media. media_url
video.dev hosted media url
Example: "https://storage.xyz/media.mp4"
source_clip.source_media. media_info
source_clip.source_media.media_info. type
source_clip.source_media.media_info. duration_ms
The duration of the video in milliseconds
source_clip.source_media.media_info. fps
The frame rate of the video
source_clip.source_media.media_info. frame_count
The number of frames in the video
source_clip.source_media.media_info. width
source_clip.source_media.media_info. height
source_clip.source_media.media_info. channels
The number of channels in the video
Available options:
complete
,
processing
,
error
Whether to perform cropping
Available options:
1:1
,
4:3
,
3:4
,
4:5
,
5:4
,
9:16
Auto-picks the main subject to focus on while cropping.
Callback to listen for events
Example: "https://system.new/webhook/v1"
Available options:
complete
,
error