Table of Contents

Class Filter

Namespace
VAST.Image.Mixing
Assembly
VAST.Image.dll

Defines an audio filter configuration for specifying volume and fade effects to apply to selected audio sources during mixing.

public class Filter
Inheritance
Filter
Inherited Members

Constructors

Filter()

public Filter()

Properties

FadeInMsec

Gets or sets the fade-in duration in milliseconds when the source becomes active.

public int? FadeInMsec { get; set; }

Property Value

int?

FadeOutMsec

Gets or sets the fade-out duration in milliseconds when the source becomes inactive.

public int? FadeOutMsec { get; set; }

Property Value

int?

Sources

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

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

Property Value

List<int>

Volume

Gets or sets volume of the specified sources. If null then volume is supposed to be 1.0, i.e. original source volume. If not null then must be in 0.0..1.0 range.

public float? Volume { get; set; }

Property Value

float?