Returns the EDID information from a compatible monitor/television connected to the video output.
Segments
connector
: The current value is always hdmi
device
: This value is 0
for single-output Series 5 players and all Series 4 and older players. The value can be 0
-3
for the XC4055, which has multiple outputs, and 0
or 1
for the XC2055 and XT2145.
Request Example
The example request parameters and headers are set as follows:
:connector
is set to hdmi
:device
is set to 0
GET /api/v1/video/hdmi/output/0/edid/ HTTP/1.1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json |
Response Example
result
is the EDID string result
{ "data": { "result": "00ffffffffffff004c2d0d050100000030120103801009780aee91a3544c99260f5054bdef80714f8111214081809500950fb3000101023a801871382d40582c4500a05a0000001e662150b051001b3040703600a05a0000001e000000fd00184b1a5117000a202020202020000000fc0053414d53554e470a2020202020016b020322f1469004050320222309070783010000e2000fe305030167030c001000b82d011d007251d01e206e285500a05a0000001e011d8018711c1620582c2500a05a0000009e8c0ad08a20e02d10103e9600a05a00000018000000000000000000000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } } |
Retrieves the power status of the monitor connected to the player.
Segments
connector
: The current value is always hdmi
device
: This value is 0
for single-output Series 5 players and all Series 4 and older players. The value can be 0
-3
for the XC4055, which has multiple outputs, and 0
or 1
for the XC2055 and XT2145.
Request Example
The example request parameters and headers are set as follows:
:connector
is set to hdmi
:device
is set to 0
GET /api/v1/video/hdmi/output/0/power-save/ HTTP/1.1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json |
Response Body
is_connected
bool: A flag indicating whether the monitor is connected to the HDMI output on the player
is_powered
bool: A flag indicating whether the monitor is on (for example, RX powered)
enabled
bool: A flag indicating whether power-save mode has been enabled on the HDMI/VGA output
Response Example
{ "data": { "result": { "is_connected": true, "is_powered": true, "enabled": false } } } |
Enables or disables power-save mode on the monitor connected to the player.
Segments
connector
: The current value is always hdmi
device
: This value is 0
for single-output Series 5 players and all Series 4 and older players. The value can be 0
-3
for the XC4055, which has multiple outputs, and 0
or 1
for the XC2055 and XT2145.
Request Example
The example request parameters and headers are set as follows:
:connector
is set to hdmi
:device
is set to 0
PUT /api/v1/video/hdmi/output/0/power-save/ HTTP/1.1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json Content-Type: application/json Content-Length: 51 |
This is an example request body that enables the power-save mode:
{ "enabled": true } |
Response Example
{ "data": { "result": true } } |
Returns a list of all available video modes on the specified video output.
Segments
connector
: The current value is always hdmi
device
: This value is 0
for single-output Series 5 players and all Series 4 and older players. The value can be 0
-3
for the XC4055, which has multiple outputs, and 0
or 1
for the XC2055 and XT2145.
Request Example
The example request parameters and headers are set as follows:
:connector
is set to hdmi
:device
is set to 0
GET /api/v1/video/hdmi/output/0/modes/ HTTP/1.1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json |
Response Body
Returns an array of video mode objects, each of which contain the following parameters:
modeName
string: The mode (for example, “1920x1080x60p”)
colorDepth
string: The color depth of the video signal
colorSpace
string: The color space of the video signal
dropFrame
bool: Whether or not the video timecode uses drop frame
frequency
int: The frame rate of the video output
width
int: The width of the video output
height
int: The height of the video output
graphicsPlaneWidth
int: The width of the graphics plane
graphicsPlaneHeight
int: The height of the graphics plane
interlaced
bool: Whether or not the video output is interlaced
overscan
bool: Whether or not the video output is using an overscan setting or not
preferred
bool: Whether or not video is the preferred mode
Response Example
|
Retrieves the current video mode on the specified video output.
Segments
connector
: The current value is always hdmi
device
: This value is 0
for single-output Series 5 players and all Series 4 and older players. The value can be 0
-3
for the XC4055, which has multiple outputs, and 0
or 1
for the XC2055 and XT2145.
Query String Parameters
Each of these parameters delivers a different mode value:
best
int optional: If set to 1, this returns the best mode
active
int optional: If set to 1, this returns the active mode
configured
int optional: If set to 1, this returns the configured mode
Request Example
The example request parameters and headers are set as follows:
:connector
is set to hdmi
:device
is set to 0
best
is set to 1
GET /api/v1/video/hdmi/output/0/mode/?best=1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json |
Response Body
isAutoMode
bool: Whether the mode is set to “auto”
name
string: The name of the video mode. Same as mode.modeName
below.
width
string: The width value of the video mode.
height
string: The height value of the video mode.
frames
string: The frame rate value of the video mode.
scan
string: The scan character value of the video mode.
mode
object: The currently configured video mode on the video output with following parameters -
modeName
string: The mode (for example, “1920x1080x60p”)
colorDepth
string: The color depth of the video signal
colorSpace
string: The color space of the video signal
dropFrame
bool: Whether or not the video timecode uses drop frame
frequency
int: The frame rate of the video output
width
int: The width of the video output
height
int: The height of the video output
graphicsPlaneWidth
int: The width of the graphics plane
graphicsPlaneHeight
int: The height of the graphics plane
interlaced
bool: Whether or not the video output is interlaced
overscan
bool: Whether or not the video output is using an overscan setting or not
preferred
bool: Whether or not video is the preferred mode
Response Example
{ "data": { "result": { "isAutoMode": false, "name": "1920x1080x60p", "width": "1920", "height": "1080", "frames": "60", "scan": "p", "mode": { "colorDepth": "8bit", "colorSpace": "rgb", "dropFrame": false, "frequency": 60, "graphicsPlaneHeight": 1080, "graphicsPlaneWidth": 1920, "height": 1080, "interlaced": false, "modeName": "1920x1080x60p", "overscan": true, "preferred": false, "width": 1920 } } } } |
Changes the video mode on the player. You should first send a GET request to find the body parameters of this API, but only the modeName
parameter is required.
Segments
connector
: The current value is always hdmi
device
: This value is 0
for single-output Series 5 players and all Series 4 and older players. The value can be 0
-3
for the XC4055, which has multiple outputs, and 0
or 1
for the XC2055 and XT2145.
Request Body
A video mode object containing the following value(s):
modeName
string required: The mode (for example, “1920x1080x60p”). See Supported Video Modes for a list of the possible valid strings for your player
colorDepth
string optional: The color depth of the video signal
colorSpace
string optional: The color space of the video signal
dropFrame
bool optional: Whether or not the video timecode uses drop frame
frequency
int optional: The frame rate of the video output
width
int optional: The width of the video output
height
int optional: The height of the video output
graphicsPlaneWidth
int optional: The width of the graphics plane
graphicsPlaneHeight
int optional: The height of the graphics plane
interlaced
bool optional: Whether or not the video output is interlaced
overscan
bool optional: Whether or not the video output is using an overscan setting or not
preferred
bool optional: Whether or not video is the preferred mode
Request Example
PUT /api/v1/video/hdmi/output/0/mode/ HTTP/1.1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json Content-Type: application/json Content-Length: 95 |
This is the example request body:
{ "name": { "modeName": "640x480x60p" } } |
Response Body
The server will return a success or error message. A successful response will almost always cause a reboot which will be indicated in the response.
success
bool: Whether or not the operation was successful
reboot
bool: Whether or not the player is rebooting
Response Example
{ "data": { "result": { "success": true, "reboot": true } } } |