Set and Retrieve Input Mode

555

# Set and Retrieve Input Mode

# Set Input Mode

Path:

/api/inputmode

Method: PUT

Content-type: application/json; charset=utf-8

API Description: Only player capable of switching between sync and async mode is supported.

Request

Name Type Example Description
inputmode String hdmi Input signal mode.
Display HDMI signal first via HDMI.
Display the player content first via DVI.

Example

{ "inputmode": "hdmi"}

# Retrieve Input Mode

Path:

/api/inputmode.json

Method: GET

Content-type: application/json; charset=utf-8

API Description:

  • In async signal first mode (inputmode == dvi) Regardless of whether the sync signal is connected (HDMI cable), inputmodeactive == dvi.
  • In sync signal first mode (inputmode == hdmi) When the sync signal is connected (HDMI cable), inputmodeactive == hdmi. When the sync signal is not connected (HDMI cable), inputmodeactive == dvi.

Response

Name Type Example Description
inputmode String hdmi Input signal mode.
Display HDMI signal first via HDMI.
Display the player content first via DVI.
inputmodeactive String dvi Current input signal.

Example

{
    "inputmode": "hdmi",
    "inputmodeactive": "dvi"
}