<-- Back to Previous Page | TOC | Next Section --> |
Chapter 5: The Transformation of Sound by ComputerSection 5.2: Reverb
|
||
One of the most important and widely used techniques in computer music is reverberation and the addition of various types and speeds of delays to dry (unreverberated) sounds. Reverberation and delays can be used to simulate room and other environmental acoustics or even to create new sounds of their own that are not necessarily related to existing physical spaces. There are a number of commonly used techniques for simulating and modeling different reverberations and physical environments. One interesting technique is to actually record the ambience of a room and then superimpose that onto a sound recorded elsewhere. This technique is called convolution. A Mathematical Excursion: Convolution in the Time DomainConvolution can be accomplished in two equivalent ways: either in the time domain or in the frequency domain. Well talk about the time-domain version first. Convolution is like a "running average"that is, we take the original function representing the music (well call that one m(n), where m(n) is the amplitude of the music function at time n) and then we make a new, smoothed function by making the amplitude a at time n of our new function equal to: a = (1/3)[m(n – 2) + m(n – 1) + m(n)] Lets call this new function r(n)for running averageand lets look at it a little more closely. Just to make things work out, well start off by making r(0) = 0 and r(1) = 0. Then: r(2) = 1/3[m(0) + m(1) + m(2)] r(3) = 1/3[m(1) + m(2) + m(3)] We continue on, running along and taking the average of every three values of m hence the name "running average." Another way to look at this is as taking the music m(n) and "convolving it against the filter a(n)" where a(n) is another function, defined by: a(0) = 1/3, a(1) = 1/3, a(2) = 1/3 All the rest of the a(n) are 0. Now, what is this mysterious "convolving against" thing? Well, first off we write it like: m*a(n) then: m*a(n) = m(n)a(0) + m(n – 1)a(1) + m(n – 2)a(2) +....+ m(0)a(n) next: m*a(n) = m(n)(1/3) + m(n – 1)(1/3) + m(n – 2)(1/3)Now, there is nothing special about the filter a(n)in fact it could be any kind of function. If it were a function that reflects the acoustics of your room, then what we are doinglook back at the formulais shaping the input function m(n) according to the filter function a(n). A little more terminology: the number of nonzero values that a(n) takes on is called the number of taps for a(n). So, our running average is a three-tap filter. Reverb in the Time DomainConvolution is sure fun, and well see more about it in the following section, but a far easier way to create reverb in the time domain is to simply delay the signal some number of times (by some very small time value) and feed it back onto itself, simulating the way a sound bounces around a room. There are a large variety of commercially available and inexpensive devices that allow for many different reverb effects. One interesting possibility is to change reverb over the course of a sound, in effect making a room grow and shrink over time (see Soundfile 5.7). |
||
|
||
|
||
Before there were digital systems, engineers created various ways to get reverb-type effects. Any sort of situation that could cause delay was used. Engineers used reverberant chamberssending sound via a loudspeaker into a tiled room and rerecording the reverb-ed sound. When one of us was a kid, we ran a microphone into our parents' shower to record a trumpet solo! Reverb units made with springs and metal plates make interesting effects, and many digital signal processing units have algorithms that can be dialed up to create similar effects. Of course we like to think that with a combination of delayed copies of signals we can simulate any type of enclosure, whether it be the most desired recording studio room or a parking garage. As youll see in Figure 5.5, there are some essential elements for creating a reverberant sound. Much of the time a good reverb "patch," or set of digital algorithms, will make use of a number of copies of the original signaljust as there are many versions of a sound bouncing around a room. There might be one copy of the signal dedicated to making the first reflection (which is the very first reflected sound we hear when a sound is introduced into a reverberant space). Others might be algorithms dedicated to making the early reflectionsthe first sounds we hear after the initial reflection. The rest of the software for a good digital reverb is likely designed to blend the reverberant sound. Filters are usually used to make the reverb tails sound as if they are far away. Any filter that attenuates the higher frequencies (like 5 kHz or up) makes a signal sound farther away from us, since high frequencies have very little energy and dont travel very far. When we are working to simulate rooms with digital systems, we have to take a number of things into consideration:
Making Reverb in the Frequency Domain: A Return to ConvolutionAs we mentioned, convolution is a great way to get reverberant effects. But we mainly talked about the mathematics of it and why convolving a signal is basically putting it through a type of filter. But now were going to talk about how to actually convolve a sound. The process is fairly straightforward:
Convolution can be powerful, and its a fairly complicated software process. It takes each sample in the impulse response file (the one we recorded in the room, which should be short) and multiplies that sample by each sample in the sound file that we want to "put in" that room. So, each sample input sound file, like a vocal sound file to which we want to add reverb, is multiplied by each sample in the impulse response file. Thats a lot of multiplies! Lets pretend, for the moment, that we have a 3-second impulse file and a 1-minute sound file to which we want to add the reverberant characteristics of some space. At 44.1 kHz, that’s:
If youve been paying close attention, you might raise an interesting question here: isnt this the time domain? Were just multiplying signals together (well, actually, were multiplying each point in each function by every other point in the other functioncalled a cross multiply). But this multiply in the time domain actually produces what we refer to as the convolution in the frequency domain. Now, were not math geniuses, but even we know that this is a whole mess of multiplies! Thats why convolution, which is very computationally expensive, had not been a popular technique until your average computer got fast enough to do it. It was also a completely unknown sound manipulation idea until digital recording technology made it feasible. But nowadays we can do it, and the reason we can do it is our old friend, the FFT! You see, it turns out that for filters with lots of taps (remember that this means one with lots of nonzero values), it is easier to compute the convolution in the spectral domain. Suppose we want to convolve our music function m(n) against our filter function a(n). We can tell you immediately that the convolution of these functions (which, remember, is another sound, a function that we call c(n)) has a spectrum equal to the pointwise product of the spectrum of the music function and the filter function. The pointwise product is the frequency content at any point in the convolution and is calculated by multiplying the spectrums of the music function and the filter function at that particular point. Another way of saying this is to say that the Fourier coefficients of the convolution can be computed by simply multiplying together each of the Fourier coefficients of m(n) and a(n). The zero coefficient (the DC term) is the product of the DC terms of a(n) and m(n); the first coefficient is the product of the first Fourier coefficient of a(n) and m(n); and so on. So, heres a sneaky algorithm for making the convolution: Step 1: Compute the Fourier coefficients of both m(n) and a(n). Step 2: Compute the pointwise products of the Fourier coefficients of a(n) and m(n). Step 3: Compute the inverse Fourier transform (IFFT) of the result of Step 1. And were done! This was one of the great properties of the FFT: it made convolution just about as easy as multiplication! |
||
So, once again, if we have a big library of great impulse responses the best-sounding cathedrals, the best recording studios, concert halls, the Grand Canyon, Grand Central Station, your showerwe can simulate any space for any sound. And indeed this is how many digital effects processors and reverb plugins for computer programs work. This is all very cool when youre working hard to get that "just right" sound. |
<-- Back to Previous Page | Next Section --> |
©Burk/Polansky/Repetto/Roberts/Rockmore. All rights reserved.