TlvTrack: ObjectSchema<{
    id: FieldType<string>;
    trackAttributes: FieldType<TypeFromFields<{
        characteristics: OptionalFieldType<null | MediaPlayback.Characteristic[]>;
        displayName: OptionalFieldType<null | string>;
        languageCode: FieldType<string>;
    }>>;
}> = ...

This structure defines a uniquely identifiable Text Track or Audio Track.

Type declaration

  • id: FieldType<string>

    This field shall indicate the Identifier for the Track which is unique within the Track catalog. The Track catalog contains all the Text/Audio tracks corresponding to the main media content.

    MatterSpecification.v13.Cluster § 6.10.5.5.1

  • trackAttributes: FieldType<TypeFromFields<{
        characteristics: OptionalFieldType<null | MediaPlayback.Characteristic[]>;
        displayName: OptionalFieldType<null | string>;
        languageCode: FieldType<string>;
    }>>

    This field shall indicate the Attributes associated to the Track, like languageCode.

    MatterSpecification.v13.Cluster § 6.10.5.5.2

MatterSpecification.v13.Cluster § 6.10.5.5