roam/20210219234904-pcm_audio.org

21 lines
749 B
Org Mode
Raw Permalink Normal View History

2021-07-29 22:51:04 +00:00
:PROPERTIES:
:ID: 472c309f-d50b-4d3b-86cf-1af7c93db0b5
:END:
2021-02-20 05:17:58 +00:00
#+title: PCM Audio
Puse-code modulation digitally represents analog audio signals as a stream of
measurements of the amplitude of the signal sampled at uniform intervals (the
sampling rate) and quanitized to the nearest value within the range of available
steps (limited by the bit depth). Multiple audio channels are commonly
interleaved.
* Sampling Rate
Digital audio is typically sampled at 48 kHz (DVD video) or 44.1 kHz (CD audio).
* Bit Depth
| Bit Depth | Minimum Value | Maximum Value |
|-----------+---------------+---------------|
| 8 | -128 | 127 |
| 16 | -32768 | 32767 |
| 24 | -8388608 | 8388607 |