Skip to main content
Analyze a video and detect scene change boundaries. Returns timestamps and confidence scores for each detected scene transition.
Timeout: 300s | Provider: triggerdev | Accepts: video

Request

curl -X POST https://api.rendobar.com/jobs \
  -H "Authorization: Bearer rb_your_key" \
  -H "Content-Type: application/json" \
  -d '{
  "type": "extract.scenes",
  "inputs": {
    "source": "https://cdn.rendobar.com/assets/examples/sample.mp4"
  },
  "params": {
    "threshold": 0.3
  }
}'

Parameters

threshold
number
default:"0.4"
Confidence threshold (0-1)
minDuration
number
default:"0.5"
Minimum scene duration in seconds (ignore shorter scenes)

Response

{
  "data": {
    "id": "job_abc123",
    "status": "dispatched"
  }
}