@@ -16,9 +16,9 @@ description of the available effects:
16
16
Amplify
17
17
~~~~~~~
18
18
19
- Amplify changes the amplitude of the signal. Some care needs to be taken.
20
- Setting the level too high can make the sound clip, which is usually
21
- undesirable .
19
+ Amplify changes the volume of the signal. Some care needs to be taken, though:
20
+ setting the level too high can make the sound digitally clip, which can produce
21
+ unpleasant crackles and pops .
22
22
23
23
BandLimit and BandPass
24
24
~~~~~~~~~~~~~~~~~~~~~~
@@ -39,30 +39,33 @@ or to transmit audio over the network in real-time.
39
39
Chorus
40
40
~~~~~~
41
41
42
- The Chorus effect duplicates the incoming audio, delays the duplicate slightly
43
- and uses an LFO to continuously modulate the pitch of the duplicated signal
44
- before mixing the duplicated signal(s) and the original together again. This
45
- creates a shimmering effect and adds stereo width to the sound.
42
+ As the name of the effect implies, the Chorus effect makes a single audio sample
43
+ sound like an entire chorus. It does this by duplicating a signal and very
44
+ slightly altering the timing and pitch of each duplicate, and varying that
45
+ over time via an LFO (low frequency oscillator). The duplicate(s) are then
46
+ mixed back together with the original signal, producing a lush, wide, and
47
+ large sound. Although chorus is traditionally used for voices, it can be
48
+ desirable with almost any type of sound.
46
49
47
50
Compressor
48
51
~~~~~~~~~~
49
52
50
- A dynamic range compressor automatically attenuates the level of the incoming
53
+ A dynamic range compressor automatically attenuates (ducks) the level of the incoming
51
54
signal when its amplitude exceeds a certain threshold. The level of attenuation
52
55
applied is proportional to how far the incoming audio exceeds the threshold.
53
56
The compressor's Ratio parameter controls the degree of attenuation.
54
57
One of the main uses of a compressor is to reduce the dynamic range of signals
55
58
with very loud and quiet parts. Reducing the dynamic range of a signal
56
- can make it easier to mix.
59
+ can make it fit more comfortably in a mix.
57
60
58
61
The compressor has many uses. For example:
59
62
60
- - It can be used in the Master bus to compress the whole output.
63
+ - It can be used in the Master bus to compress the whole output prior to being hit by a limiter, making the effect of the limiter much more subtle .
61
64
- It can be used in voice channels to ensure they sound as even as possible.
62
- - It can be *sidechained *. This means it can reduce the sound level
65
+ - It can be *sidechained * by another sound source . This means it can reduce the sound level
63
66
of one signal using the level of another audio bus for threshold detection.
64
67
This technique is very common in video game mixing to "duck" the level of
65
- music or sound effects when voices need to be heard .
68
+ music or sound effects when in-game or multiplayer voices need to be fully audible .
66
69
- It can accentuate transients by using a slower attack.
67
70
This can make sound effects more punchy.
68
71
@@ -71,22 +74,30 @@ The compressor has many uses. For example:
71
74
If your goal is to prevent a signal from exceeding a given amplitude
72
75
altogether, rather than to reduce the dynamic range of the signal,
73
76
a :ref: `limiter <doc_audio_buses_limiter >` is likely a better choice
74
- than a compressor.
75
-
77
+ than a compressor for this purpose. However, applying compression before
78
+ a limiter is still good practice.
76
79
77
80
Delay
78
81
~~~~~
79
82
80
- Adds an "echo" effect with a feedback loop. It can be used together
81
- with *Reverb * to simulate wide rooms, canyons, etc. where sound bounces
82
- are far apart.
83
+ Digital delay essentially duplicates a signal and repeats it at a specified
84
+ speed with a volume level that decays for each repeat. Delay is great for
85
+ simulating the acoustic space of a canyon or large room, where sound bounces
86
+ have a lot of *delay * between their repeats. This is in contrast to reverb,
87
+ which has a more natural and blurred sound to it. Using this in conjunction
88
+ with reverb can create very natural sounding environments!
83
89
84
90
Distortion
85
91
~~~~~~~~~~
86
92
87
- Makes the sound distorted. Godot offers several types of distortion: *overdrive *,
88
- *tan * and *bit crushing *. Distortion can be used to simulate sound coming through
89
- a low-quality speaker or device.
93
+ Makes the sound distorted. Godot offers several types of distortion:
94
+
95
+ - *Overdrive * sounds like a guitar distortion pedal or megaphone. Sounds distorted with this sound like they're coming through
96
+ a low-quality speaker or device.
97
+ - *Tan * sounds like another interesting flavor of overdrive.
98
+ - *Bit crushing * clamps the amplitude of the signal, making it sound flat and crunchy.
99
+
100
+ All three types of distortion can add higher frequency sounds to an original sound, making it stand out better in a mix.
90
101
91
102
EQ
92
103
~~
@@ -97,10 +108,15 @@ scripts to create an equalizer with a custom number of bands.
97
108
EQ6, EQ10, EQ21
98
109
~~~~~~~~~~~~~~~
99
110
100
- Godot provides three equalizers with different numbers of bands. An equalizer on
101
- the Master bus can be useful to cut frequencies that the device's speakers can't
102
- reproduce well (e.g. a mobile phone's speakers won't reproduce bass content
103
- well). The equalizer effect can be disabled when headphones are plugged in.
111
+ Godot provides three equalizers with different numbers of bands, which
112
+ are represented in the title (6, 10, and 21 bands, respectively).
113
+ An equalizer on the Master bus can be useful for cutting low and high
114
+ frequencies that the device's speakers can't reproduce well.
115
+ For example, phone or tablet speakers usually don't reproduce
116
+ low frequency sounds well, and could make a limiter or compressor
117
+ attenuate sounds that aren't even audible to the user anyway.
118
+
119
+ Note: The equalizer effect can be disabled when headphones are plugged in, giving the user the best of both worlds.
104
120
105
121
Filter
106
122
~~~~~~
@@ -125,8 +141,8 @@ Limiter
125
141
~~~~~~~
126
142
127
143
A limiter is similar to a compressor, but it's less flexible and designed to
128
- prevent a signal's amplitude exceeding a given dB threshold. Adding a limiter to
129
- the Master bus is a safeguard against clipping.
144
+ prevent a signal's amplitude exceeding a given dB threshold. Adding a limiter to the final point of
145
+ the Master bus is good practice, as it offers an easy safeguard against clipping.
130
146
131
147
LowPassFilter
132
148
~~~~~~~~~~~~~
@@ -151,21 +167,25 @@ Panner
151
167
~~~~~~
152
168
153
169
The Panner allows the stereo balance of a signal to be adjusted between
154
- the left and right channels (wear headphones to audition this effect) .
170
+ the left and right channels. Headphones are recommended when configuring in this effect.
155
171
156
172
Phaser
157
173
~~~~~~
158
174
159
- It probably does not make much sense to explain that this effect is formed by
160
- two signals being dephased and cancelling each other out. You can make a Darth
161
- Vader voice with it, or jet-like sounds.
175
+ This effect is formed by de-phasing two duplicates of the same sound so
176
+ they cancel each other out in an interesting way. Phaser produces a
177
+ pleasant whooshing sound that moves back and forth through the audio
178
+ spectrum, and can be a great way to create sci-fi effects or Darth
179
+ Vader-like voices.
162
180
163
181
PitchShift
164
182
~~~~~~~~~~
165
183
166
184
This effect allows the adjustment of the signal's pitch independently of its
167
185
speed. All frequencies can be increased/decreased with minimal effect on
168
186
transients. PitchShift can be useful to create unusually high or deep voices.
187
+ Do note that altering pitch can sound unnatural when pushed outside of a
188
+ narrow window.
169
189
170
190
Record
171
191
~~~~~~
@@ -185,10 +205,12 @@ SpectrumAnalyzer
185
205
~~~~~~~~~~~~~~~~
186
206
187
207
This effect doesn't alter audio, instead, you add this effect to buses you want
188
- a spectrum analysis of. This would typically be used for audio visualization. A
189
- demo project using this can be found `here <https://github.com/godotengine/godot-demo-projects/tree/master/audio/spectrum >`__.
208
+ a spectrum analysis of. This would typically be used for audio visualization.
209
+ Visualizing voices can be a great way to draw attention to them without just
210
+ increasing their volume.
211
+ A demo project using this can be found `here <https://github.com/godotengine/godot-demo-projects/tree/master/audio/spectrum >`__.
190
212
191
213
StereoEnhance
192
214
~~~~~~~~~~~~~
193
215
194
- This effect uses a few algorithms to enhance a signal's stereo spectrum .
216
+ This effect uses a few algorithms to enhance a signal's stereo width .
0 commit comments