stop_video
Stop one active video-processing job. If video_id is omitted or null, all active video-processing jobs are stopped.
- Method:
POST - Path:
/stop_video
Request Body
{
"video_id": "f2d9a2d4f94a4d4da6d2a0a2f4d24f01"
}
To stop all active video-processing jobs, send an empty object or set video_id to null.
| Field | Type | Description |
|---|---|---|
video_id | string | Optional video-processing job identifier returned by POST /process_video. |
Success Response
{
"success": true,
"message": "Stopped video f2d9a2d4f94a4d4da6d2a0a2f4d24f01",
"data": {
"video_id": "f2d9a2d4f94a4d4da6d2a0a2f4d24f01"
}
}
When all jobs are stopped, data.video_id is null.