Table of Contents

Class ApiFilter

Namespace
VAST.Network
Assembly
VAST.Network.dll

Represents an audio filter that applies mixing and fade parameters to specified sources. Defines which sources should be processed and what transformations to apply.

public class ApiFilter
Inheritance
ApiFilter
Inherited Members

Constructors

ApiFilter()

public ApiFilter()

Properties

FadeInMsec

Gets or sets the fade-in duration in milliseconds for the specified sources.

public int? FadeInMsec { get; set; }

Property Value

int?

FadeOutMsec

Gets or sets the fade-out duration in milliseconds for the specified sources.

public int? FadeOutMsec { get; set; }

Property Value

int?

Sources

Gets or sets the list of source indices to which this filter should be applied. At least one source must be specified.

public List<int> Sources { get; set; }

Property Value

List<int>

Volume

Gets or sets the volume level for the specified sources. If null the volume is 1.0 (original source volume). If not null it must be in the range 0.0 to 1.0.

public float? Volume { get; set; }

Property Value

float?