GET /v1/video/:connector/output/:device/
...
Code Block |
---|
GET /api/v1/video/hdmi/output/0/ HTTP/1.1 Host: {{playerIP}} Authorization: {{DigestAuth}} Accept: application/json |
Response Body
resolutions
resolutions[ ]: An array of information about the graphics, output, video resolution. Returns result values for height and width.edid_identity
: Parses the above string in a JSON format for readability. Requires an HDMI output connected to the player and a display.edid
string: Returns the EDID read string of the display connected to the player. If power save is on, zeroes will be returnedstatus
:audioBitsPerSample
int: The number of bits per audio sampleaudioChannelCount
int: The number of audio channels in the outputaudioFormat
string: The format of the audio output. A "PCM" value indicates that the player is sending decoded output.audioSampleRate
int: The audio sample rate (in hertz)eotf
string: The current electro-optical transfer function (EOTF) used by the display. The following are possible values:"HDR (GAMMA)"
"SDR (GAMMA)"
"SMPTE 2084 (PQ)"
"Future (BBC/NHK)"
"unspecified"
outputPowered
bool: A flag indicating whether the display device is on (i.e. RX powered)outputPresent
bool: A flag indicating whether the HDMI output is connected to a display device or not.unstable
bool: A flag indicating whether the display signal is unstable or stable
modes
: List of all available video modes on the player.activeMode
: Information about the active video mode on the playerbestMode
string: The best video mode for the player. The HDMI connector must be attached because it gets details from EDID result.configuredMode
: The configured video mode on the player. This can be different thanactiveMode
.powerSaveStatus
bool: This value indicates the power save status of the display connected to the player.
...
Response Body
is_connected
bool: A flag indicating whether the monitor is connected to the HDMI output on the playeris_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
...
Returns an arrayof 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 signalcolorSpace
string: The color space of the video signal (“rgb”, "yuv420", or "yuv422")dropFrame
bool: Whether or not the video timecode uses drop framefrequency
int: The frame rate of the video outputwidth
int: The width of the video outputheight
int: The height of the video outputgraphicsPlaneWidth
int: The width of the graphics planegraphicsPlaneHeight
int: The height of the graphics planeinterlaced
bool: Whether or not the video output is interlacedoverscan
bool: Whether or not the video output is using an overscan setting or notpreferred
bool: Whether or not video is the preferred mode
...
Each of these parameters delivers a different mode value:
best
int optional: If set to 1, this returns the best modeactive
int optional: If set to 1, this returns the active modeconfigured
int optional: If set to 1, this returns the configured mode
...
Code Block |
---|
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 asmode.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 signalcolorSpace
string: The color space of the video signal ("rgb", "yuv420", or "yuv422")dropFrame
bool: Whether or not the video timecode uses drop framefrequency
int: The frame rate of the video outputwidth
int: The width of the video outputheight
int: The height of the video outputgraphicsPlaneWidth
int: The width of the graphics planegraphicsPlaneHeight
int: The height of the graphics planeinterlaced
bool: Whether or not the video output is interlacedoverscan
bool: Whether or not the video output is using an overscan setting or notpreferred
bool: Whether or not video is the preferred mode
...
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 playercolorDepth
string optional: The color depth of the video signalcolorSpace
stringoptional: The color space of the video signal (“rgb”, "yuv420", or "yuv422")dropFrame
bool optional: Whether or not the video timecode uses drop framefrequency
intoptional: The frame rate of the video outputwidth
intoptional: The width of the video outputheight
intoptional: The height of the video outputgraphicsPlaneWidth
intoptional: The width of the graphics planegraphicsPlaneHeight
intoptional: The height of the graphics planeinterlaced
booloptional: Whether or not the video output is interlacedoverscan
booloptional: Whether or not the video output is using an overscan setting or notpreferred
booloptional: Whether or not video is the preferred mode
...
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 successfulreboot
bool: Whether or not the player is rebooting
...