Interface ChromecastMetadataDescription

Describes the metatadata used by Chromecast.

Remarks


- Available since v2.21.0.

interface ChromecastMetadataDescription {
    images?: string[] | ChromecastMetadataImage[];
    releaseDate?: string;
    releaseYear?: number;
    subtitle?: string;
    title?: string;
    type?: ChromecastMetadataType;
}

Hierarchy (view full)

Properties

images?: string[] | ChromecastMetadataImage[]

List of content images for the current source.

Remarks


- The string must be a valid URL.
- Multiple images can be specified for multiple resolutions.

releaseDate?: string

The release date of the current source.

Remarks


- The format is "YYYY-MM-DD".

releaseYear?: number

The release year of the current source.

subtitle?: string

The subtitle of the current source.

Remarks


- This should be a short explanation about the content.

title?: string

The title of the content.

The metadata type of the current source.

Default Value

'generic'

Generated using TypeDoc