Table of Contents

Class ApiAudioProcessing

Namespace
VAST.Network
Assembly
VAST.Network.dll

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

bool

Mixing

Gets or sets the common mixing settings for all audio tracks.

public ApiAudioMixing Mixing { get; set; }

Property Value

ApiAudioMixing

Tracks

Gets or sets the collection of individual audio track configurations.

public List<ApiAudioTrack> Tracks { get; set; }

Property Value

List<ApiAudioTrack>

Transcoding

Gets or sets a value indicating whether audio transcoding should be applied.

public bool Transcoding { get; set; }

Property Value

bool