惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
WordPress大学
WordPress大学
IT之家
IT之家
G
Google Developers Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
V
V2EX
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
V
Visual Studio Blog
有赞技术团队
有赞技术团队
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
PCM Audio Explained: How Sound Becomes Numbers
Dilip Singh · 2026-06-16 · via DEV Community

Dilip Singh

Whenever you listen to a WAV file, record audio through a microphone, or process speech data for machine learning, you are likely working with PCM audio.

But what exactly is PCM, and why is it so important?

What Is PCM?

PCM stands for Pulse Code Modulation.

It is one of the most widely used methods for representing audio in digital form.

Instead of storing sound as a continuous wave, PCM stores a sequence of numerical values. Each value represents the amplitude of the sound wave at a specific moment in time.

For example:

120
135
140
138
125
110

These numbers are digital representations of the original sound signal.

How PCM Works

PCM audio is created through two important steps.

1. Sampling

The audio signal is measured at regular intervals.

For example, a sampling rate of 44,100 Hz means the signal is measured 44,100 times every second.

Each measurement becomes a sample.

2. Quantization

The sampled values are converted into numerical levels that a computer can store.

The precision of this conversion depends on the bit depth.

Common bit depths include:

  • 8-bit
  • 16-bit
  • 24-bit
  • 32-bit floating point

Higher bit depths provide greater accuracy and a larger dynamic range.

Why PCM Is Important

PCM is simple, reliable, and preserves audio quality.

Many professional audio systems use PCM because it stores sound without compression.

This makes PCM useful for:

  • Audio engineering
  • Music production
  • Speech processing
  • Machine learning
  • Voice recognition systems

PCM in WAV Files

A WAV file commonly stores audio using PCM encoding.

A typical WAV file contains:

  • File metadata
  • Audio format information
  • Sampling rate
  • Number of channels
  • Bit depth
  • PCM sample data

Because PCM is uncompressed, WAV files are usually larger than compressed formats such as MP3.

However, they maintain high audio quality and are easier to process programmatically.

Mono vs Stereo PCM

PCM audio can contain different numbers of channels.

Mono

Mono audio contains a single channel.

Every speaker receives the same signal.

Stereo

Stereo audio contains two channels:

  • Left channel
  • Right channel

This allows sounds to be positioned across speakers, creating a more immersive listening experience.

Where PCM Is Used

PCM audio is used in many everyday technologies:

  • Voice assistants
  • Video conferencing applications
  • Digital recorders
  • Audio editing software
  • Speech recognition systems
  • AI voice applications

It serves as the foundation for many modern audio-processing systems.

Final Thoughts

PCM may look like a simple sequence of numbers, but it forms the foundation of digital audio.

By converting sound waves into numerical samples, PCM enables computers to store, analyze, modify, and transmit audio efficiently.

Understanding PCM is an important first step toward learning audio engineering, speech processing, machine learning, and AI-powered audio systems.

In the next article, we will explore how WAV files store PCM data and how computers read audio from a file.