Input to the MediaPlayback activateAudioTrack command

MatterSpecification.v13.Cluster § 6.10.7.13

interface ActivateAudioTrackRequest {
    audioOutputIndex?: null | number;
    trackId: string;
}

Hierarchy (view full)

Properties

audioOutputIndex?: null | number

This value is the index field of the OutputInfoStruct from the OutputList attribute (from the AudioOutput cluster) and indicates which audio output the Audio Track should be played on. This field is absent for Text Tracks and only present for Audio Tracks. A value of null shall indicate that the server can choose the audio output(s) to play the Audio Track on.

MatterSpecification.v13.Cluster § 6.10.7.13.2

trackId: string

This field shall indicate the Audio Track to activate.

MatterSpecification.v13.Cluster § 6.10.7.13.1