Change the sample rate. Match your project, fix mismatch issues.

Need to convert a 48 kHz file to 44.1 kHz to bounce a CD master? A 44.1 kHz file to 48 kHz to drop into a video project? Drop the audio, pick the target rate, get back the same audio resampled cleanly with a proper anti-aliasing filter. No DAW round-trip needed.

drop your audio file

WAV, MP3, FLAC, M4A, anything — we'll handle the decode. Batch supported.

Common sample rates and what they're for

Why resampling matters

Your DAW project is locked to one sample rate (set when you created the project). Audio imported at a different rate will either be auto-resampled on the fly (usually fine, sometimes wrong) or played at the wrong speed and pitch (bad). Matching the sample rate up front avoids the question.

Some specific cases:

What we do under the hood

We decode the file using the browser's audio engine, then resample through an OfflineAudioContext at the target rate. The Web Audio API uses a high-quality polyphase filter for resampling — better than naive linear interpolation. The output is then re-encoded as either WAV (lossless) or MP3 (lossy but smaller).

FAQ

Will resampling change how my audio sounds?

For typical music and voice, no audible difference. For very content-heavy material at very low target rates (e.g., music at 16 kHz), you'll hear loss of high frequencies — that's the point of going to 16 kHz. For 44.1 ↔ 48 ↔ 96, you'll hear nothing.

Should I go up to 96 kHz from a 44.1 source?

It doesn't add quality (you can't invent samples you didn't record) but doesn't hurt either if a destination requires 96. Just makes the file bigger.

Why does the file get smaller when I downsample?

Fewer samples per second = fewer bytes per second. A WAV at 22 kHz is half the size of a WAV at 44 kHz. Useful for archiving voice content where high frequencies don't matter.

What's the right rate for an audiobook?

22.05 kHz mono is plenty for narration. Cuts file size by 75% versus 44.1 stereo with no audible loss for voice.

What's the right rate for a podcast?

44.1 kHz stereo or mono. Most podcast hosts accept 44.1 / 48 either way; 44.1 is slightly more space-efficient.

Does anything upload?

No. Resampling and re-encoding both run in your browser.

What's the difference between 44.1 kHz and 48 kHz?

44.1 kHz is the audio CD standard (used by Spotify, Apple Music, Bandcamp). 48 kHz is the video / broadcast standard (used by YouTube, film, TV). The audio quality difference is inaudible; the standards exist for historical reasons. Convert when your destination wants one specifically.

Will resampling reduce audio quality?

Done correctly (with an anti-aliasing low-pass filter, which we apply via the browser's OfflineAudioContext), the quality loss is negligible — well below human hearing thresholds. Going up (e.g., 44.1 → 96) is mathematically lossless. Going down (96 → 44.1) loses high frequencies above the new Nyquist limit, which are above 22 kHz anyway.

Why does my 48 kHz audio play at the wrong speed in my 44.1 kHz DAW project?

Most modern DAWs auto-resample, but some don't, and some hardware playback drivers play 48 kHz files at 44.1 kHz speed (so they sound slower / lower pitched). Pre-converting to match your project sample rate fixes it permanently.

Should I pick 44.1 or 48 for my project?

If the final delivery is music for streaming (Spotify, Bandcamp), 44.1. If it's audio for video (YouTube, film), 48. If you're not sure, 48 — it matches more downstream platforms and the only thing you lose is a tiny bit of file size.

What about 96 kHz or 192 kHz?

High-res rates have headroom for processing (more samples to work with during mixing/mastering). For final delivery, 44.1 / 48 is the standard. Upsample only if a destination explicitly requires it.

Does my audio get uploaded?

No. Resampling runs in your browser. The file never leaves your machine.