Class CompressorParameters
Parameters for Compressor Effect.
Namespace: System.Dynamic.ExpandoObject
Assembly: ManagedBass.Fx.dll
Syntax
public class CompressorParameters : object, IEffectParameter
Fields
fAttack
Time in ms before compression reaches its full value, in the range from 0.01 to 500. Default = 20.
Declaration
public float fAttack
Field Value
Single
|
fGain
Output gain in dB of signal after compression, in the range from -60 to 60. Default = 5.
Declaration
public float fGain
Field Value
Single
|
fRatio
Compression ratio, in the range from 1 to 100. Default = 3.
Declaration
public float fRatio
Field Value
Single
|
fRelease
Time (speed) in ms at which compression is stopped after Input drops below fThreshold, in the range from 50 to 3000. Default = 200.
Declaration
public float fRelease
Field Value
Single
|
fThreshold
Point in dB at which compression begins, in decibels, in the range from -60 to 0. Default = -15.
Declaration
public float fThreshold
Field Value
Single
|
lChannel
A FXChannelFlags flag to define on which channels to apply the effect. Default: All
Declaration
public FXChannelFlags lChannel
Field Value
FXChannelFlags
|
Properties
FXType
Gets the EffectType.
Declaration
public EffectType FXType { get; }
Property Value
EffectType
|