{"service":"Video Synopsis Service","endpoints":{"POST /synopsis/run":"Submit and wait — returns MP4 directly (simplest)","POST /synopsis":"Submit async job (returns job_id)","GET /synopsis/{job_id}/status":"SSE progress stream (heartbeat)","GET /synopsis/{job_id}/download":"Download completed MP4","GET /jobs":"List all jobs","DELETE /synopsis/{job_id}":"Cancel or delete a job","GET /health":"Health check"},"example":{"one_shot":"curl -o synopsis.mp4 -X POST http://10.5.255.108:7890/synopsis/run -H \"Content-Type: application/json\" -d '{\"camera\": \"10_128_0_188\", \"start_timestamp\": \"2026-02-23T10:00:00Z\", \"end_timestamp\": \"2026-02-23T12:00:00Z\", \"vms_url\": \"http://10.5.1.81:5885\"}'","async_submit":"curl -X POST http://10.5.255.108:7890/synopsis -H \"Content-Type: application/json\" -d '{\"camera\": \"10_128_0_188\", \"start_timestamp\": \"2026-02-23T08:00:00Z\", \"end_timestamp\": \"2026-02-23T18:00:00Z\", \"vms_url\": \"http://10.5.1.81:5885\"}'","watch":"curl -N http://10.5.255.108:7890/synopsis/{job_id}/status","download":"curl -o synopsis.mp4 http://10.5.255.108:7890/synopsis/{job_id}/download"}}