A player and streaming technology tuple describing a supported technology of the player.

interface PreferredTechnology {
    exclude?: boolean;
    player: PlayerType;
    streaming: StreamType;
}

Hierarchy (view full)

Properties

exclude?: boolean

Set to true to exclude this technology from the list of preferred technologies.

player: PlayerType

A string determining a rendering mode used to render the player. See PlayerType for details of the supported values.

streaming: StreamType

A string determining a streaming technology. See StreamType for details of the supported values.

Generated using TypeDoc