v5

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-0112516159.5 KB

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

promptstring
model_namestring

Example request

{
  "prompt": "Describe what happens in this scene",
  "model_name": "gpt-4"
}

Response

Scene description generated

successboolean

Example response

{
  "success": true,
  "data": {
    "description": "Scene description text"
  }
}