...
Configuration Article | CA-20220907-TP-08 VDG Sense | API | Usage | PDF Download |
Table of Contents |
---|
Live Video URL
The generic URL is formatted as follows:
...
Whether to do or do not transcode is identified by the server using a 0 (do not) or 1 (do) value. The video’s height and width are given in pixels.
URI | Type | Description |
---|---|---|
transcode | Boolean (0|1) | If set to 1, image will be transcoded |
bandwidth | Integer (Kb/s) | Set the maximum bandwidth |
width | Integer (pixel) | Video width in pixels |
height | Integer (pixel) | Video height in pixels |
quality | Integer (percentage) | Quality of the RTSP stream (default 70) |
fittopanel | Boolean (0|1) | Add black bars if requested image height/width does not correspond with video resolution |
Examples
Transcode stream url:
rtsp://
/?device=&width=320&height=240&transcode=1
The width, height and transcode parameters are send to the server, the server determines the correct stream, based on the dual stream setting for the max panel width. The stream is transcoded to a JPEG stream with the requested width and height, but it keeps the original aspect-ratio.Transcoding over limited bandwidth url:
rtsp://
/?device=&width=320&height=240&transcode=1&bandwidth=32
The stream is transcoded to half the requested width and height, balanced over the limited bandwidth, and keeps the original aspect-ratio.
The resulting frame-rate will differ and be irregular compared to the original frame-rate, due to the load-balancing.