get_video_frame
Get the latest frame for a stream.
- Method:
POST - Path:
/get_video_frame
Request Body
{
"stream_url": "rtsp://camera/live"
}
Success Response
{
"success": true,
"message": null,
"data": {
"image": "<base64 image>"
}
}
| Field | Type | Description |
|---|---|---|
data.image | string | Base64-encoded image for the latest frame. |