All data in a computer is represented in binary, whether it is numbers, text, images or sound. The computer software processes the data according to its content.
Computers can only recognise binaryA number system that contains two symbols, 0 and 1. Also known as base 2.. All dataUnits of information. In computing there can be different data types, including integers, characters and Boolean. Data is often acted on by instructions. must be converted into binary in order for a computer to process it. Sound is no exception. To do this, sound is captured - usually by a microphone - and then converted into a digital signal.
An analogue-to-digital converter will capture a sound wave at regular time intervals. This recording is known as a sampleA digitally recorded fragment of sound, taken from an existing track or sound environment..
For example, a sound wave like this can be sampled at each time interval:
The sound recorded at each sample point is converted to its nearest numeric equivalent:
Sample
1
2
3
4
5
6
7
8
9
10
Denary
8
3
7
6
9
7
2
6
6
6
Binary
1000
0011
0111
0110
1001
0111
0010
0110
0110
0110
Sample
Denary
1
8
2
3
3
7
4
6
5
9
6
7
7
2
8
6
9
6
10
6
Sample
Binary
1
1000
2
0011
3
0111
4
0110
5
1001
6
0111
7
0010
8
0110
9
0110
10
0110
This data is then stored in a file for later use.
Sample rate
sample rateHow many samples of data are taken per second. This is normally measured in hertz, eg an audio file usually uses samples of 44.1 kHz (44,100 audio samples per second).is the number of samples recorded in any given period of time. The higher the sample rate the closer the recorded signal is to the original. Sample rate is measured in HertzThe unit of frequency, symbol 'Hz'. 1 Hz is 1 wave or cycle per second. (Hz).
If the samples recorded above were plotted on a graph, the resulting representation of the sound wave would not be too accurate:
However, if the sample rate is doubled - twice as many samples in the same time period - the resulting representation would be closer:
However, the higher the sample rate, the larger the resulting file. As a result, sound files are often a compromise between quality and size of file. An audio file is usually recorded at 44.1 kilohertz (kHz). This is high enough for good sound quality while keeping file size down to sensible levels.
Bit depth
bit depthThe number of bits available to store an audio sample. refers to the number of bitThe smallest unit of data in computing represented by a 1 in binary. used to record each sample. As is the case with images, the higher the bit depth, the more accurately a sound can be recorded, but the larger the file size. Typical bit depths are 16 bit and 24 bit.
Bit rate
bit rateIn computing, the number of bits processed per second. in the context of sound is simply a measure of how much data is processed for each second of sound. Bit rate is calculated by:
Sample rate × bit depth
As with sample rate, the higher the bit rate, the better the quality of the recorded sound.