Audio latency explained: why milliseconds matter

Last reviewed on April 25, 2026

Audio latency is the time between sound entering one part of a chain and leaving another. The number sounds small โ€” typical desktop latency is measured in milliseconds โ€” but small numbers add up. By the time a voice has crossed a microphone, the operating system, the browser, the network, and another set of speakers, the total can be high enough to make a video call awkward or a recording impossible to monitor live. This guide explains where the milliseconds come from and what you can do about them.

Run the test first. Our latency test reports the value the browser exposes. The number you see is a floor, not the full picture โ€” keep reading to understand what gets added below it.

What "latency" actually measures

There are at least four different latencies that get bundled under the same word:

Our test reads what the browser exposes through the Web Audio API: principally the buffer-related latencies. Everything below the browser is invisible to the page but still very much present in your experience.

How much latency is acceptable?

Tolerance depends on the task. Sitting silently and listening to a recorded podcast, hundreds of milliseconds go unnoticed. Speaking and hearing your own voice routed back, the brain begins to flinch around 30 ms.

Use caseComfortable latencyVerdict
Listening to recorded audioAnything reasonableNo issue
One-way live streamsUp to ~3,000 msForgiving
Video calls and meetingsUnder 200 ms one-wayNoticeable above
Live monitoring while recordingUnder 20 msTight budget
Playing a software instrumentUnder 10 msHardware territory

Two important nuances. First, these are round-trip budgets โ€” the perceived total, not just the browser figure. Second, latency rarely arrives as a single value: it jitters. A connection averaging 80 ms with occasional 300 ms spikes feels worse than a steady 150 ms.

Where the milliseconds come from

Bluetooth

Wireless headphones add a chunk of latency that varies with codec and connection profile. Streaming audio profiles (A2DP) tend to add roughly 100โ€“250 ms; the moment the microphone is in use, headsets typically switch to a lower-quality profile that may add even more. If a recording sounds out of sync, Bluetooth is one of the first things to suspect.

USB audio devices

Cheap USB microphones often run at 16-bit, 44.1 or 48 kHz with relatively large buffers. Better interfaces use ASIO or Core Audio drivers that can run very small buffers, but only when the rest of the system is healthy enough to keep up.

Operating system audio stacks

On Windows, shared mode through WASAPI typically adds 10โ€“30 ms; exclusive mode and ASIO can drop to a few. macOS Core Audio is generally lower-latency out of the box. On either platform, virtual cameras and meeting-app filters can insert their own buffers.

The browser

Browsers are not the worst place to do real-time audio anymore, but they are still bound by the same buffer-size trade-off. Tabs in the background often run at slower clocks, and a single misbehaving extension can pause the audio thread long enough to cause a glitch.

Networks

Once a remote endpoint is involved, latency starts at the round-trip time of the connection and grows with every codec and jitter buffer in between. Even on a fast connection, expect 50โ€“150 ms of network-side delay on a typical video call.

How to reduce latency on a normal computer

  1. Use a wired connection where it counts. Bluetooth alone can blow a 20 ms budget.
  2. Plug audio devices directly. USB hubs add jitter and occasionally drop frames.
  3. Close other apps that use audio. Each one wants its own buffer.
  4. On Windows, enable exclusive mode for the device or use an ASIO driver if your interface supplies one.
  5. Lower the buffer size in your DAW, meeting app, or driver utility โ€” but watch for crackles, which mean you went too low.
  6. Restart the browser tab between sessions. Audio contexts that have been alive for hours sometimes drift.

Worked example: video calls

Imagine you join a meeting from a laptop with built-in audio:

The total commonly lands somewhere around 100โ€“180 ms one-way, before either party adds Bluetooth headphones. That is why turning off Bluetooth alone often turns a sluggish call into a snappy one.

Common mistakes to avoid

For day-to-day calls, latency under about 150 ms is hard to notice. For recording, aim for under 20 ms round-trip โ€” anything higher will fight you. For live software-instrument playing, plan for an audio interface and a wired chain.

If a low number on the test is not matching your experience on calls, the chain outside the browser is almost always responsible. Run the latency test with and without your headphones connected to compare. Our microphone troubleshooting guide covers the related "the test looks fine but the call sounds bad" scenario.

โ† Back to audio tests