Table of Contents

Class TrebleEnhancerAudioEffect

Namespace
VisioForge.Core.Types.X.AudioEffects
Assembly
VisioForge.Core.dll

Treble enhancer audio effect. Implements the VisioForge.Core.Types.X.AudioEffects.BaseAudioEffect.

public class TrebleEnhancerAudioEffect : BaseAudioEffect, ISharedAudioEffectX

Inheritance

Implements

Inherited Members

Constructors

TrebleEnhancerAudioEffect(int, ushort)

Initializes a new instance of the VisioForge.Core.Types.X.AudioEffects.TrebleEnhancerAudioEffect class.

public TrebleEnhancerAudioEffect(int frequency, ushort volume)

Parameters

frequency int

Specifies the frequency range that will be used to amplify. Range is frequency to (sample rate div 2).

volume ushort

Sets the amplification for a channel. Default value is 0, which means that no amplification occurs. The value shouldn't go over 10000. If separate is True, then every channel will be amplified by its own channel amplification value. If separate is False, then every channel is amplified with the value of channel 0.

Properties

Frequency

Gets or sets frequency.

public int Frequency { get; set; }

Property Value

int

Volume

Gets or sets the volume.

public ushort Volume { get; set; }

Property Value

ushort

See Also