THEOplayer > ChromecastMetadataDescription
Inherits from MetadataDescription . See parent page for inherited properties and methods.
Describes the metatadata used by Chromecast.
Signature:
export interface ChromecastMetadataDescription extends MetadataDescription
- Available since v2.21.0.
Property |
Type |
Description |
---|---|---|
images (optional) |
|
List of content images for the current source. |
releaseDate (optional) |
|
The release date of the current source. |
releaseYear (optional) |
|
The release year of the current source. |
subtitle (optional) |
|
The subtitle of the current source. |
type (optional) |
The metadata type of the current source. |
List of content images for the current source.
Signature:
readonly images?: string[] | ChromecastMetadataImage[];
- The string must be a valid URL.
- Multiple images can be specified for multiple resolutions.
The release date of the current source.
Signature:
readonly releaseDate?: string;
- The format is "YYYY-MM-DD".
Warning: This API is deprecated.
Superseded by ChromecastMetadataDescription.releaseDate.
The release year of the current source.
Signature:
readonly releaseYear?: number;
The subtitle of the current source.
Signature:
readonly subtitle?: string;
- This should be a short explanation about the content.
The metadata type of the current source.
Signature:
readonly type?: ChromecastMetadataType;