Project 1


In this project, you will work with fade-in, fade-out, cross-fade, and then construct a sound collage composition. Before getting started, we’ll take a moment to discuss a critical aspect of digital audio that is too fundamental to ignore: clipping.

Clipping

Digital-to-analog converters have a limited output range that is typically considered to be -1 to +1. If you try to output a higher or lower value, the actual sample is limited (or clipped) to be within range. This causes harsh and unpleasant distortion.

When editing, audio samples are typically stored as floating point numbers, so exceeding the (nominal) maximum amplitude is OK. But when you you export, samples are converted to 16-bit integers (more compatible with D/A converters) and that’s where clipping occurs. Once clipped, there is no good way to recover the lost information.

To avoid clipping, you must keep the maximum amplitude within the -1 to +1 range. One fix is to simply lower the amplitude of everything before exporting your sound. If clipping is due to one particular spot, it can be better to change that particular spot rather than re-scale everything. For example, you might use an envelope to lower the amplitude in the trouble spot. However, as a general rule, you should never edit individual samples, change amplitude abruptly, or change the amplitude of a very short region. All of these changes are themselves likely to produce audible problems.

Audacity has an option (View: Show Clipping (on/off)) to highlight audio samples that are out of range, but depending on track Gain settings and how many tracks you mix together, exported audio can still clip even if there is no clipping in individual tracks. This view feature is more useful to inspect recordings or exported audio. If you discover clipping, the best fix is to go back and re-record or re-mix to eliminate the problem.

Fade In, Fade Out, Cross-Fade

A fade in is used to eliminate a sudden onset of sound. Instead, the beginning of a sound is multiplied by a scale factor that smoothly progresses from 0 to 1 during the fade-in period.

A fade out is used to eliminate a sudden offset of sound. Instead, the end of the sound is multiplied by a scale factor that smoothly progresses from 1 to 0 during the fade-out period.

Cross-fading is a technique for splicing that avoids the sudden transition of an instantaneous cut from one sound to another. Instead, the sounds are overlapped slightly, and during the overlap, one sound fades out while the other sound fades in.

You should be familiar with these terms, as you will use these techniques throughout the course. As a reminder, here’s a schematic to illustrate these terms. Remember that, when incorporating sounds into compositions, any sound without a “natural” beginning and ending should be edited with a fade-in and fade-out to avoid clicks and pops at the beginning and ending. When joining sounds together, one often overlaps the fade-out of one sound with the fade-in of the next sound, creating a cross-fade.

Notice the fades here are linear, that is, following a straight line. Other curves are possible, but for this project, stick to linear fades. In particular, Audacity’s Envelope tool creates exponential fades. An exponential shape does not work for cross-fades because it leaves a “hole” in the middle of the cross-fade where the fading-out sound and the fading-in sound are both at a relatively low level.

Instructions