auto_clips.complete
auto_clips.complete
Webhook event for Create Auto Clips
body:
has the same content you would receive when you fetch the media using the Get Auto Clips API.
Available options:
auto_clips.complete
Reference id to fetch clips created by auto clips
Array of all clips identified.
Start time (milliseconds) of clip in source media
End time (milliseconds) of clip in source media
Identifier for the clip
Duration of the clip in milliseconds
Source media to create clip from
Available options:
complete
, processing
, error
Example:
"complete"
Identifier for the media
video.dev hosted media url
Example:
"https://storage.xyz/media.mp4"
Available options:
video
The duration of the video in milliseconds
The frame rate of the video
The number of frames in the video
The width of the video
The height of the video
The number of channels in the video
Was this page helpful?
{
"event": "auto_clips.complete",
"body": {
"run_id": "<string>",
"clips": [
{
"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
}
}
}
]
}
}