Describe video scene
post/video/{video_id}/scene/{scene_id}/describe/
Path parameters
video_idstring required
Example:m-12345
scene_idstring required
Example:scene-123
Request body
Example request
{
"prompt": "Describe what happens in this scene",
"model_name": "gpt-4"
}Response
Scene description generated
Example response
{
"success": true,
"data": {
"description": "Scene description text"
}
}