Class ApiAudioProcessing
Represents audio processing configuration for a media stream. Specifies whether to discard or transcode audio and defines mixing and track settings.
public class ApiAudioProcessing
- Inheritance
-
ApiAudioProcessing
- Inherited Members
Constructors
ApiAudioProcessing()
public ApiAudioProcessing()
Properties
Discard
Gets or sets a value indicating whether the audio should be discarded from the output.
public bool Discard { get; set; }
Property Value
Mixing
Gets or sets the common mixing settings for all audio tracks.
public ApiAudioMixing Mixing { get; set; }
Property Value
Tracks
Gets or sets the collection of individual audio track configurations.
public List<ApiAudioTrack> Tracks { get; set; }
Property Value
Transcoding
Gets or sets a value indicating whether audio transcoding should be applied.
public bool Transcoding { get; set; }