This structure includes the attributes associated with a Text/Audio Track

MatterSpecification.v13.Cluster § 6.10.5.6

interface TrackAttributes {
    characteristics?: null | MediaPlayback.Characteristic[];
    displayName?: null | string;
    languageCode: string;
}

Hierarchy (view full)

Properties

characteristics?: null | MediaPlayback.Characteristic[]

This is a list of enumerated CharacteristicEnum values that indicate a purpose, trait or feature associated with the Track. A value of null shall indicate that there are no Characteristics corresponding to the Track.

MatterSpecification.v13.Cluster § 6.10.5.6.2

displayName?: null | string

The value is a String containing a user displayable name for the Track. A value of null shall indicate that there is no DisplayName corresponding to the Track.

MatterSpecification.v13.Cluster § 6.10.5.6.3

languageCode: string

The value is a String containing one of the standard Tags for Identifying Languages RFC 5646, which identifies the primary language used in the Track.

MatterSpecification.v13.Cluster § 6.10.5.6.1