Transcribing noisy audio

Effects of noise, distance, reverberation, and overlapping speech

Updated June 29, 2026

Someone drops a laptop in the middle of a conference table, six people talk over each other for an hour, the ventilation hums the whole time, and afterward the transcript is asked to be perfect. This is the most common real-world audio there is, and close to the worst case for recognition.

Background noise

Noise is not all equal, and the property that predicts difficulty is whether it holds still.

The easy case is stationary noise: a fan, an air conditioner, road rumble. It has a steady, predictable spectrum. Recognizers handle it reasonably, because the model can learn to look past a constant background, and the noise does not resemble speech.

The hard case is non-stationary noise: a door slam, a dog, a siren, clattering dishes. It appears suddenly and overlaps the speech it interrupts, and the model cannot subtract what it cannot predict. The worst kind is babble, a room full of other people talking. Babble is hard not because it is loud but because it is speech, so a model trained to find speech finds all of it and cannot tell which voice it was supposed to transcribe.

Far-field and reverberation

Move the microphone from your lips to across the room, and two things happen. The direct sound gets weaker, and reflections off the walls, floor, and ceiling arrive a few milliseconds later, layering delayed copies of every sound on top of itself. This smearing is reverberation, and it is why a smart speaker across the kitchen or a ceiling mic in a meeting room is much harder than a headset.

Reverberation blurs the sharp boundaries between sounds that recognition relies on, turning a crisp consonant into a muddy one and filling the brief silences that mark word edges. The longer the room's reverberation time, the worse it gets. Distance compounds it by lowering the signal relative to the noise floor, so far-field audio is usually both reverberant and low in signal.

Overlapping speech

When two people speak at once, a single-channel recognizer faces a signal that is the sum of both voices, and most recognizers are built to transcribe one stream of speech at a time.

Overlap breaks the one-speaker-at-a-time assumption baked into the model. The result is usually a garble that belongs to neither speaker cleanly, or one voice winning and the other vanishing. This is why heated meetings and interruptions are much harder than orderly turns, and why diarization struggles exactly where the speech overlaps. Real conversation is full of overlap, so it is a constant low-grade tax on multi-speaker audio rather than a rare edge case.

Signal clipping

A less famous but common problem is audio recorded too hot, where the loudest parts exceed what the format can hold and get flattened, or clipped.

Clipping is information destroyed at capture, not noise added on top. The flattened peaks introduce harsh distortion and erase the true shape of the loudest sounds, and no processing afterward can reconstruct what was never recorded. It is the audio cousin of upsampling: the damage is permanent because it happened before the bytes were saved.

Methods for improving noisy audio

The instinct is to fix noisy audio with software after the fact, and that is mostly the wrong end. The cheapest, largest improvement is at capture: a closer or better microphone, separate channels for separate speakers, sensible gain so nothing clips. A headset beats a far-field array; an array beats a single distant mic.

When you cannot control capture, several techniques help, with caveats. Multi-microphone beamforming uses an array to steer toward the talker and suppress the rest, which is why smart speakers have several microphones. Speech enhancement and denoising front-ends clean the signal, but a denoiser tuned to sound good to a human ear can remove cues the recognizer needed, so enhancement that improves listening sometimes hurts recognition, and should be measured, not assumed. Source-separation models can split overlapping voices into separate streams before recognition. And the recognizer itself can be hardened by training on noisy, reverberant, augmented audio, which is why modern models tolerate conditions that broke older ones.

The test, as always, is your own audio. A model's clean-speech accuracy tells you nothing about its behavior on your conference table, which is why you benchmark on your real recordings and learn what breaks recognition before it breaks in production.

Common questions

Why is background chatter harder than a loud fan?

Because a fan is steady and not speech-like, so the model can learn to ignore it, while background chatter is itself speech. A recognizer trained to find voices finds all of them and cannot easily tell which one it was meant to transcribe. Steady, non-speech noise is far easier than other people talking.

Why does a microphone across the room transcribe so poorly?

Distance weakens the direct signal and adds reverberation, the delayed reflections off walls and ceiling that smear sounds together and fill the gaps between words. Together they blur the cues recognition depends on, which is why far-field audio from a smart speaker or ceiling mic is much harder than a close headset.

Will running a noise reducer first improve my transcripts?

Sometimes, sometimes not. Denoisers tuned to please the human ear can strip cues the recognizer relied on, so aggressive enhancement occasionally lowers accuracy even as it sounds cleaner. Treat it as something to measure on your audio rather than assume, and prefer fixing capture over cleaning up afterward.

Can speech recognition handle two people talking at once?

Poorly, with a single channel, because the model receives one mixed signal and is built to transcribe one voice at a time. Overlap is genuinely hard. Separate channels per speaker, microphone arrays, or source-separation models help, but heavy crosstalk remains one of the hardest conditions for any recognizer.

References

  1. Radford, A., Kim, J. W., Xu, T., Brockman, G., McLeavey, C., & Sutskever, I. (2022). Robust Speech Recognition via Large-Scale Weak Supervision. arXiv preprint arXiv:2212.04356.