Class ApiAudioTrack
Represents audio track configuration for a media stream. Specifies audio parameters such as sample rate, channels, codec, and optional mixing settings.
public class ApiAudioTrack
- Inheritance
-
ApiAudioTrack
- Inherited Members
Constructors
ApiAudioTrack()
public ApiAudioTrack()
Properties
Bitrate
Gets or sets the bitrate of the audio track in bits per second.
public int Bitrate { get; set; }
Property Value
Channels
Gets or sets the number of audio channels.
public int Channels { get; set; }
Property Value
Codec
Gets or sets the codec used for the audio track.
public Codec Codec { get; set; }
Property Value
Index
Gets or sets the 0-based index of the audio track.
public int Index { get; set; }
Property Value
Mixing
Gets or sets the audio mixing configuration specific to this track.
public ApiAudioMixing Mixing { get; set; }
Property Value
SampleFormat
Gets or sets the sample format of the audio data.
public SampleFormat SampleFormat { get; set; }
Property Value
SampleRate
Gets or sets the sample rate of the audio track in Hz.
public int SampleRate { get; set; }