Digital audio formats Flashcards
What is audio data commonly stored as?
A sequence of integers to represent the waveform.
What is bit depth?
(or bit resolution) governs the amount of storage required for each sample.
What is PCM?
Pulse Code Modulation
The “standard”, raw, uncompressed audio data transmission and storage format
What is the ‘pulse’ in PCM?
“Pulse”, because amplitudes are sampled/played back at regular intervals.
What is ‘code’ in PCM?
“Code”, because the amplitude is stored as a number.
What is ‘modulation’ in PCM?
“Modulation”, because the numbers represent changes (in amplitude) over time.
What is PCM the default format of?
WAV and AIFF audio files.
How do you convert bits per sample to bytes per sample?
Divide by 8 (needed when calculating file size)
How do you calculate 1 minute of CD audio in MB?
44100 x 16(divided by 8) x 2 x 60 then divide the answer by 1024 squared.
How do you work out the bitrate/bandwidth required for PCM audio?
sample rate(44100) x number of bits per sample(16) x number of channels(2)
How are multiple channel files usually stored?
By interleaving samples from each channel
- (A stereo-interleaved file is stored:
LRLRLRLRLRLRLRLRLRLRLRLRLR)
What is a frame?
Each grouping that belongs to a particular moment in time is known as a frame
[LR][LR][LR][LR][LR][LR][LR][LR][LR][LR][LR][LR][LR]
How is data usually structured?
In a container format, that includes identifiers and meta-data (includes a header, with information about the data)
When was IFF developed?
The Interchange File Format was developed by Electronic Arts (and Commodore) in 1985.
What is IFF?
A generic container format where different types of information are divided into different areas of the file known as chunks (headers + binary data)