AudioEffectDelay

Inherits: AudioEffect < Resource < Reference < Object

Adds a delay audio effect to an audio bus. Plays input signal back after a period of time.

Two tap delay and feedback options.

Description

Plays input signal back after a period of time. The delayed signal may be played back multiple times to create the sound of a repeating, decaying echo. Delay effects range from a subtle echo effect to a pronounced blending of previous sounds with new sounds.

Properties

float

dry

1.0

bool

feedback/active

false

float

feedback/delay_ms

340.0

float

feedback/level_db

-6.0

float

feedback/lowpass

16000.0

bool

tap1/active

true

float

tap1/delay_ms

250.0

float

tap1/level_db

-6.0

float

tap1/pan

0.2

bool

tap2/active

true

float

tap2/delay_ms

500.0

float

tap2/level_db

-12.0

float

tap2/pan

-0.4


Property Descriptions

float dry = 1.0

Output percent of original sound. At 0, only delayed sounds are output. Value can range from 0 to 1.


bool feedback/active = false

  • void set_feedback_active ( bool value )

  • bool is_feedback_active ( )

If true, feedback is enabled.


float feedback/delay_ms = 340.0

  • void set_feedback_delay_ms ( float value )

  • float get_feedback_delay_ms ( )

Feedback delay time in milliseconds.


float feedback/level_db = -6.0

  • void set_feedback_level_db ( float value )

  • float get_feedback_level_db ( )

Sound level for tap1.


float feedback/lowpass = 16000.0

  • void set_feedback_lowpass ( float value )

  • float get_feedback_lowpass ( )

Low-pass filter for feedback, in Hz. Frequencies below this value are filtered out of the source signal.


bool tap1/active = true

  • void set_tap1_active ( bool value )

  • bool is_tap1_active ( )

If true, tap1 will be enabled.


float tap1/delay_ms = 250.0

  • void set_tap1_delay_ms ( float value )

  • float get_tap1_delay_ms ( )

tap1 delay time in milliseconds.


float tap1/level_db = -6.0

  • void set_tap1_level_db ( float value )

  • float get_tap1_level_db ( )

Sound level for tap1.


float tap1/pan = 0.2

  • void set_tap1_pan ( float value )

  • float get_tap1_pan ( )

Pan position for tap1. Value can range from -1 (fully left) to 1 (fully right).


bool tap2/active = true

  • void set_tap2_active ( bool value )

  • bool is_tap2_active ( )

If true, tap2 will be enabled.


float tap2/delay_ms = 500.0

  • void set_tap2_delay_ms ( float value )

  • float get_tap2_delay_ms ( )

Tap2 delay time in milliseconds.


float tap2/level_db = -12.0

  • void set_tap2_level_db ( float value )

  • float get_tap2_level_db ( )

Sound level for tap2.


float tap2/pan = -0.4

  • void set_tap2_pan ( float value )

  • float get_tap2_pan ( )

Pan position for tap2. Value can range from -1 (fully left) to 1 (fully right).