docs: clarify start_frame/end_frame vs start_time/end_time across API docs

This commit is contained in:
Accusys
2026-05-14 17:23:33 +08:00
parent 89c3b7df50
commit df531b2457
2 changed files with 4 additions and 4 deletions

View File

@@ -126,8 +126,8 @@ Every path segment after the resource ID is a **verb** — an action on that res
| # | Method | Route | Description |
|---|--------|-------|-------------|
| 43 | GET | `/api/v1/file/:file_uuid/thumbnail` | Frame JPEG (optional crop via `?frame=&x=&y=&w=&h=`) |
| 44 | GET | `/api/v1/file/:file_uuid/video` | Raw video stream (`?start=&end=` for range) |
| 45 | GET | `/api/v1/file/:file_uuid/video/bbox` | Bbox overlay video (`?start=&end=&duration=`) |
| 44 | GET | `/api/v1/file/:file_uuid/video` | Raw video stream (`?start_time=&end_time=` in seconds) |
| 45 | GET | `/api/v1/file/:file_uuid/video/bbox` | Bbox overlay video (`?start_frame=&end_frame=&duration=` frame numbers) |
| 46 | GET | `/api/v1/file/:file_uuid/trace/:trace_id/video` | Trace clip (`?mode=normal\|debug&padding=`) |
## Identity Delete

View File

@@ -207,8 +207,8 @@ curl "http://localhost:3002/api/v1/file/3abeee81d94597629ed8cb943f182e94/trace/2
| # | Method | Path | Description |
|---|--------|------|-------------|
| 29 | GET | `/api/v1/file/:file_uuid/thumbnail` | Frame JPEG (?frame=&x=&y=&w=&h=) |
| 30 | GET | `/api/v1/file/:file_uuid/video` | Raw video stream (?start=&end=) |
| 31 | GET | `/api/v1/file/:file_uuid/video/bbox` | Bbox overlay (?start=&end=&duration=) |
| 30 | GET | `/api/v1/file/:file_uuid/video` | Raw video stream (`?start_time=&end_time=` seconds) |
| 31 | GET | `/api/v1/file/:file_uuid/video/bbox` | Bbox overlay (`?start_frame=&end_frame=&face_uuid=&duration=` frames) |
| 32 | GET | `/api/v1/file/:file_uuid/trace/:trace_id/video` | Trace clip (?mode=&padding=) |
Two modes: