videooutput

The videooutput object allows you to configure and retrieve non-persistent settings related to a video output (the video mode itself is configured with the videomodeconfiguration object).

videooutput IDL

interface VideoOutputEvent { attribute String type; }; callback VideoOutputEventCallback = void (VideoOutputEvent event); [ constructor(String interfaceName) ] interface VideoOutputConfiguration { attribute String type; Promise<Size> getVideoResolution(); Promise<Size> getGraphicsResolution(); Promise<Size> getOutputResolution(); Promise<void> adjustGraphicsColor(ColorProperties); Promise<EdidIdentity> getEdidIdentity(); Promise<String> getEdid(); Promise<void> setMultiScreenBezel(int xPercentage, int yPercentage); Promise<void> setBackgroundColor(int color); Promise<void> setPowerSaveMode(bool enable); Promise<bool> getPowerSaveMode(); Promise<void> set3dMode(int mode); Promise<bool> isAttached(); [type == "hdmi"] Promise<OutputStatus> getOutputStatus(); [type == "hdmi"] Promise<void> disableAudio(bool disable); [type == "hdmi"] Promise<TxHdcpStatus> getTxHdcpStatus(); [type == "hdmi"] Promise<void> forceHdcpOn(bool); Promise<void> setSyncDomain(String domain) Promise<void> setMpcdi(String filename); void addEventListener(String type, VideoOutputEventCallback callback); void removeEventListener(String type, VideoOutputEventCallback callback); }; interface EdidIdentity { attribute String manufacturer; attribute int product; attribute int serialNumber; attribute int weekOfManufacture; attribute int yearOfManufacture; attribute String monitorName; attribute String textString; attribute String serialNumberString; attribute bool bt2020RgbSupport; attribute bool bt2020YccSupport; attribute bool sdrEotfSupport; attribute bool hdrEotfSupport; attribute bool hdrSt2084Support; }; interface OutputStatus { attribute bool outputPresent; attribute bool outputPowered; attribute bool unstable; attribute String audioFormat; attribute int audioSampleRate; attribute int audioBitsPerSample; attribute int audioChannelCount; attribute String eotf; }; interface Size { attribute int width; attribute int height; }; interface ColorProperties { attribute int constrast; attribute int saturation; attribute int hue; attribute int brightness; };

ON THIS PAGE



Object Creation

To create a videooutput object, first load the brightsign/videooutput module using the require() method. Then create an instance of the videooutput class with a string value specifying the video output to configure (currently accepted values are "HDMI-1", "HDMI-2", "HDMI-3", "HDMI-4". and "vga").

var VideoOutputClass = require("@brightsign/videooutput"); var videoOutputHDMI = new VideoOutputClass("hdmi");

VideoOutputConfiguration

Use this interface to perform operations on the video output.

Events

VideoOutputEvent is raised when the hotplug status of the HDMI® output changes. It has one type property:

  • type: The event type is hotplugevent

Methods

getVideoResolution()
Promise<Size> getVideoResolution() 

Returns the current resolution of the video plane.

getGraphicsResolution()

Returns the current resolution of the graphics plane.

getOutputResolution()

Returns the current video-output resolution.

Note

In most cases, the values returned by the getVideoResolution(), getGraphicsResolution(), and getOutputResolution () methods will be identical. The "GraphicsResolution" and "VideoResolution" values will differ when a 4K video mode is selected and full-resolution graphics is not enabled: The graphics plane remains at HD (1920x1080), while the video plane expands to 4K (e.g. to 3840x2160). The "OutputResolution" value will differ from the other two values when the video output is upscaled: For example, when upscaling from HD to 4K, the "GraphicsResolution" and "VideoResolution" values will remain at 1920x1080, while the "OutputResolution" values will indicate 3840x2160.

adjustGraphicsColor()

Adjusts the video and graphics output of the player using the options in the passed ColorProperties instance.

getEdidIdentity()

Returns EDID information from a compatible monitor/television as an EdidIdentity interface.

getEdid()

Returns EDID information from a compatible monitor/television as a hex-encoded string

setMultiScreenBezel()

Adjusts the size of the bezel used in calculations for multiscreen displays, allowing for users to compensate for the width of their screen bezels. The calculations for the percentages are as follows:

xPercentage = (width_of_bezel_between_active_screens / width_of_active_screen) * 100

yPercentage = (height_of_bezel_between_active_screens / height_of_active_screen) * 100

The bezel measurement is therefore the total of the top and bottom bezels in the y case, or the left and right bezels in the x case. When this value is set correctly, images spread across multiple screens take account of the bezel widths, leading to better alignment of images.

setBackgroundColor()

Specifies the background color using an #rrggbb hex value (8 bits for each color).

setPowerSaveMode()

Disables HDMI output and the syncs for VGA output if passed true. The absence of a signal will cause some monitors to go into standby mode.

getPowerSaveMode()

Returns True if power save mode is enabled on the video output.

set3dMode()

Sets the 3D video output mode, which is specified by passing one the following parameters:

  • 0: Standard mono video (default)

  • 1: Side-by-side stereo video

  • 2: Top-and-bottom stereo video

isAttached()

Returns true if the HDMI/VGA video connector is attached to an output device (i.e. the display EDID can be read successfully). This method will always return false if setPowerSaveMode(true) has been called on the output.

getOutputStatus()

Returns OutputStatus which describes the current state of the video output and is defined below.

disableAudio()

Disables audio output. If passed True, the video will continue to output.

getTxHdcpStatus()

Returns the current HDCP authentication state of the video output.

forceHdcpOn()

Can be used to force HDCP authentication on the video output. Even without HDCP forced on, there can still be HDCP on the output if an HDMI input has requested authentication.

setSyncDomain() 

Passing any string will enable Genlock synchronization. To disable Genlock on the domain, pass an empty string to this method. Genlock synchronization will lock the vertical sync of the video output to the system clock reference. PTP is then used to synchronize the system clock of multiple players (for example, in a video wall).

setMpcdi()

Users that construct an MPCDI file as per the version1a 2D media profile should pass videoOutputHDMI.setMpcdi("SD:/filename.mpcdi") to the BrightSign player to decode the file and apply the warp and blend to the output as per the requirements set in filename.mpcdi (replace "filename" with the name of your actual file). Passing an empty string will turn off the warp and blend, and the image will return to the normal format.

BrightSign Series 4 players implement all levels of the MPCDI 2D media profile (version 1a).

close()

This method shuts down the instance, preventing it from further consuming resources. If it is not called, garbage collection determines when the instance will be destroyed.

EdidIdentity

This interface contains EDID information about an attached display:

  • manufacturer string

  • product int

  • serialNumber int

  • weekOfManufacture int

  • yearOfManufacture int

  • monitorName string

  • textString string

  • serialNumberString string

  • bt2020RgbSupport bool

  • bt2020YccSupport bool

  • sdrEotfSupport bool

  • hdrEotfSupport bool

  • hdrSt2084Support bool

OutputStatus

This interface contains information about an attached HDMI display device.

The outputPresent and outputPowered entries will always be false if setPowerSaveMode(true) has been called on the output.

  • outputPresent bool: A flag indicating whether the HDMI output is connected to a display device or not.

  • outputPowered bool: A flag indicating whether the display device is on (i.e. RX powered) 

  • unstable bool: A flag indicating whether the display signal is unstable or stable

  • audioFormat 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)

  • audioBitsPerSample int:  The number of bits per audio sample

  • audioChannelCount int: The number of audio channels in the output

  • 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"

Size

This interface represents a video resolution.

  • width int: The height of the screen/plane

  • height int: The width of the screen/plane

ColorProperties

This interface is passed to the adjustGraphicsColor() method. Each of the following parameters has a default value of 0 and can accept a range of values between -1000 and 1000.

  • contrast int

  • saturation int

  • hue int

  • brightness int

TxHdcpStatus

This interface is returned by the getTxHdcpStatus() method.

  • state string: The HDCP status of the HDMI output, which can be one of the following values:

    • "not-required": HDCP is not required by the player. HDCP is required by the player if the video has been decoded locally and needs protection or if the script has called the forceHdcpOn() method. Note that, even if this parameter indicates not-required, HDCP might still be active in passthrough mode if an upstream HDMI source (i.e. a device connected to the HDMI input port on the player) has requested it.

    • "authenticated": HDCP has been enabled and successfully negotiated.

    • "authentication-in-progress": HDCP has been enabled but authentication is incomplete.

    • "authentication-failed": HDCP has been requested but could not be negotiated.

Example