Get Video Output Mode List and Current Selection
1. API Description
Get video output mode list and current selection.
Request mode: GET [ip]/api/video/mode/get
| Administrator Rights | Login Authentication |
|---|---|
| No | Yes |
2. Input Parameters
None
3. Output Parameters
| Parameter | Type | Description |
|---|---|---|
| status | Int | Status code |
| modes | Array | Output mode array, member data structure is mode |
mode
| Parameter | Type | Description |
|---|---|---|
| width | Int | Video width in pixels |
| height | Int | Video height in pixels |
| interlaced | Boolean | Whether it is interlaced scan |
| frame-rate | Int | Frame rate |
| aspect-ratio | String | Aspect ratio |
| aspect-x | Int | Width in aspect ratio |
| aspect-y | Int | Height in aspect ratio |
| pref-mode | Boolean | Whether it is the recommended value |
| curr-mode | Boolean | Whether it is the currently applied value |
4. Example
Response Example
{
"modes": [
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": true,
"frame-rate": 6000,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 6000,
"height": 1080,
"interlaced": true,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5994,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5994,
"height": 1080,
"interlaced": true,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5000,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5000,
"height": 1080,
"interlaced": true,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 3000,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 2997,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 2400,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 2398,
"height": 1080,
"interlaced": false,
"pref-mode": false,
"width": 1920
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 6000,
"height": 720,
"interlaced": false,
"pref-mode": false,
"width": 1280
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5994,
"height": 720,
"interlaced": false,
"pref-mode": false,
"width": 1280
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5000,
"height": 720,
"interlaced": false,
"pref-mode": false,
"width": 1280
},
{
"aspect-ratio": 1.7777777777777777,
"aspect-x": 16,
"aspect-y": 9,
"curr-mode": false,
"frame-rate": 5000,
"height": 576,
"interlaced": true,
"pref-mode": false,
"width": 720
},
{
"aspect-ratio": 1.3333333333333333,
"aspect-x": 4,
"aspect-y": 3,
"curr-mode": false,
"frame-rate": 5000,
"height": 576,
"interlaced": true,
"pref-mode": false,
"width": 720
}
],
"status": 0
}