All guides
Audio 9 min read

How to Clean Background Noise from Audio Recordings Online Safely

Recorded audio is unusually revealing. An interview, a lecture, a client call, a voice memo of a doctor's advice, a family message — the content is private, and unlike a document it also carries a voiceprint. Uploading it to an anonymous 'AI noise remover' to fix an air-conditioner hum is a disproportionate trade.

The good news is that the Web Audio API in your browser is a complete audio processing graph. It can decode a file into raw samples, run filters and gates over them, render the result faster than real time, and hand you a finished WAV or MP3 — all without a network request. This guide covers what noise actually is, what can realistically be removed, and how to do it well.

Know which kind of noise you are fighting

Treating all noise the same is why most cleanup attempts make recordings sound worse. Identify the problem first, then apply the narrowest fix.

  • Steady broadband noise — air conditioning, fans, computer whirr, tape hiss. Constant in level and spread across frequencies. Very treatable.
  • Mains hum — a low buzz at 50 or 60 Hz plus harmonics, from bad grounding or nearby power. Treatable with a narrow cut.
  • Rumble — traffic, footsteps, handling noise, wind buffeting. Lives below roughly 100 Hz, where almost no speech content sits. Easy to remove.
  • Hiss and sibilance — high-frequency content above about 8 kHz. Partly treatable with a gentle high cut.
  • Intermittent events — a door slam, a cough, a passing siren. Not removable by filtering; cut or fade them manually.
  • Room reverb — the sound of a hard, empty room. Essentially not removable. Fix it at recording time with soft furnishings.

The cleanup chain, in order

Process in this sequence, because each step makes the next one easier. Start with a high-pass filter around 80–100 Hz to strip rumble; speech fundamentals for most adult voices sit above this, so the voice is untouched while the recording immediately feels tighter. Next apply a gentle low-pass around 10–12 kHz to take the edge off hiss without dulling consonants.

Then apply a noise gate with a threshold set just above the level of the silence between words. The gate leaves speech alone and attenuates the gaps, which is where listeners perceive noise most. Set the threshold by ear: raise it until the room tone vanishes between sentences, then back off slightly. Too aggressive and the start of quiet words gets clipped, which sounds far worse than the original hum.

Only after the noise is under control should you adjust level. Boost the overall gain so speech sits comfortably loud, and use a limiter to stop peaks clipping. Boosting first simply amplifies the noise you were about to remove.

Always compare against the original

The single most useful habit in audio cleanup is A/B comparison. Listen to a ten-second section before and after, at the same volume, ideally on headphones. Processing that sounds impressive in isolation often turns out to be hollowing out the voice.

Watch for three tell-tale artefacts: a 'underwater' or phasey quality from over-filtering, words whose first syllable is chopped off by a gate set too high, and a pumping effect where the background swells between phrases. If you hear any of them, reduce the strength rather than adding another process on top.

Trim, then export in the right format

Cut the dead air at the start and end, plus any long pauses, using a waveform editor where you can see exactly where speech begins. Trimming before export keeps the file smaller and the listener's attention longer.

For export, choose WAV when the file is going into further editing or a video timeline, because it is uncompressed and lossless. Choose MP3 for sharing, podcast upload or messaging, where a fraction of the size matters far more than the last few percent of fidelity. Encoding happens locally in both cases.

Recording better beats cleaning up

Ten seconds of preparation saves an hour of repair. Get the microphone within about 20 centimetres of the speaker so the voice dominates the room. Turn off fans, air conditioning and anything with a compressor. Record in a room with curtains, carpet or a sofa rather than a bare kitchen. Keep the recorder off the desk, or on a soft surface, to avoid handling thumps.

Record a few seconds of pure silence at the start too. It gives you a clean sample of the room tone, which makes setting a gate threshold trivially easy.

Why local processing matters for voice

A voice recording is biometric data in most legal frameworks. It also frequently contains third parties who never consented to being uploaded anywhere — the other side of an interview, colleagues in a meeting, a child in the background. Processing locally means you are not making that decision on their behalf.

In the GetToolix audio tools the file is decoded into browser memory, processed through a Web Audio graph on your own processor, and encoded back to WAV or MP3 on your device. There is no upload, no queue, no temporary copy on a server, and no account.

Tools mentioned in this guide

Frequently Asked Questions