...
decoder_name
: The system name of the decoderfriendly_name
: The name of the decoder as specified when callingSetDecoderMode()
max_decode_size
: The maximum resolution of the decoder, as set by system software. This value can be either "4K" or "HD"configured_decode_size
: The maximum resolution of the decoder that is specified when callingSetDecoderMode()
mode
: The current mode of the decoder, which can be either "Regular" or "Mosaic"usage_count
: The number of videos currently being decoded by the decodermax_usage
: The maximum number of videos that can be decoded simultaneously by the decoder. The optimummax_usage
limits limits are described below; the limit may be lower depending on a number of factors, including interlacing and frame rate.- 4K decoder:
- 1 4K video
- 2 HD videos
- 4 SD videos
- 8 CIF videos
- 10 QCIF videos
- HD decoder:
- 0 4K videos
- 1 HD video
- 3 SD videos
- 4 CIF videos
- 5 QCIF videos
- 4K decoder:
mosaic_mode_interlace
: The current deinterlacing mode of the decoder, which can be either "Enabled" or "Disabled". This value is specified when callingSetDecoderMode()
.
...
SetPowerSaveMode(power_save_enable As Boolean) As Boolean
Turns off Disables HDMI output, the syncs for VGA output, and the DAC output for component video. This The absence of a signal will cause some monitors to go into standby mode.
EnableVideo(enable As Boolean) As Boolean
Enables video output from the device if True. Setting this method to False disables all video output from the device. This method is set to True by default.
IsAttached(connector As String) As Boolean
...
Enables MPCDI if passed True. This will only happen if all of the resources needed for MPCDI have been allocated and set correctly—otherwise, this method will return False and not enable MPCDI. You can pass False to this method to disable MPCDI after it has been enabled.
Tip | ||
---|---|---|
| ||
See the MPCDI tech note for more information about configuring MPCDI on BrightSign players. |
...