NEW · FFmpeg.wasm · 100% Browser-Based

Audio Converter

Convert between MP3, WAV, AAC, OGG, FLAC, and M4A — FFmpeg.wasm runs locally in your browser. Stream-copy when possible. No upload, no signup, no watermark.

🎵
Drop an audio file
MP3 · WAV · AAC · OGG · FLAC · M4A
Files stay on your device · Never uploaded

Related Tools on UDT

Audio Compressor →
Compress audio with bitrate/quality presets for MP3, AAC, Opus.
Audio Trimmer →
Trim audio frame-accurately with a visual waveform display.
Audio Extractor →
Strip the audio track from any video — MP3, WAV, AAC, or OGG.
All Audio Tools →
Browse the full Audio Suite — 7+ tools, all in-browser.

Why Do This in Your Browser?

Audio format conversion is one of the most common one-off file operations — and yet it's the use case cloud converters built their entire businesses around. CloudConvert, OnlineAudioConverter, Zamzar; the playbook is upload, queue, download, walk away while paying for the privilege. The underlying conversion takes seconds.

FFmpeg.wasm handles every common audio format natively. The browser version stream-copies when the source and target codecs match (FLAC → FLAC container change), which is instant; transcodes when they don't (FLAC → MP3), at roughly 30–50x real-time on a recent laptop. A 60-minute audiobook converts in 2–3 minutes.

How It Works

Pick a target format and the tool figures out whether to stream-copy or transcode. Stream-copy preserves bit-exact audio (no quality loss whatsoever) and is the right choice for container changes (e.g., AAC inside MP4 → AAC inside M4A). Transcode is required when the codec changes (e.g., FLAC → MP3); the tool runs the source through the appropriate encoder with sensible default bitrates.

Format-specific defaults: MP3 (192kbps VBR, transparent for most listening), WAV (16-bit PCM, archival), AAC (192kbps VBR in M4A container), OGG (160kbps Vorbis), FLAC (lossless, smaller than WAV by ~50%), M4A (192kbps AAC). Custom bitrate/quality available for each.

Tip: If you also need to reduce file size, the Audio Compressor tool exposes finer bitrate controls. To extract audio from a video file first, use the Audio Extractor — it stream-copies when source codec is already AAC. For explicit sample-rate conversion separate from codec/container change (e.g., 44.1k → 48k for film delivery), the Audio Sample Rate Converter handles resampling with SoX-quality precision.

Common Use Cases

MP3 ↔ WAV for Editing
Convert MP3 to WAV for editing in audio tools that work better with uncompressed input; export back to MP3 for distribution.
FLAC Archives → MP3 Daily Listening
Keep archival FLAC, transcode to MP3 for portable playback. Lossless source means cleaner MP3 output.
iTunes/Apple Music Compatibility
M4A is the Apple-native container; convert OGG/FLAC to M4A for clean integration with Apple Music.
Podcast Master → MP3 Distribution
Master in WAV/FLAC, distribute as MP3. The conversion is the last step before upload to a podcast host.
Voice Memo (M4A) → MP3 Sharing
iPhone voice memos export as M4A; many email and chat clients prefer MP3.
OGG → MP3 for Old Devices
Some older devices don't decode OGG; MP3 is the universal fallback.

How We Compare

Honest read on free, paid, and self-hosted options for this kind of job:

UDT Audio Converter (this tool): Free, browser-based, FFmpeg.wasm with all common codecs. Stream-copy when possible (instant, bit-exact). No upload, no watermark, no signup.
CloudConvert: Cloud-based; free tier daily minutes; $9–$25/mo paid. Broad format support; uploads required.
Zamzar: Cloud-based; free tier daily limits and ads; $9–$25/mo paid. Uploads required.
OnlineAudioConverter: Cloud-based; free with ads. Uploads required.
fre:ac (desktop): Free, open-source desktop converter. Excellent format support; this browser tool is the focused alternative for one-off jobs.
iTunes / Music app: Limited to MP3/AAC/AIFF/WAV; free.
FFmpeg CLI: Free, command-line. Same engine as this tool; this is FFmpeg with a UI.

See also: After converting an audio file, the Audio Waveform Generator produces a shareable waveform visualisation of the result.

Frequently Asked Questions

Is this audio converter really free?+
Yes — completely free, no watermark, no time limits, no signup. The site is supported by ads elsewhere; the tool is unrestricted.
Are my audio files uploaded anywhere?+
No. FFmpeg.wasm runs entirely in your browser. The 32MB engine downloads once and caches; after that, the tool works fully offline.
Will conversion lose quality?+
Depends on the conversion. Container changes (M4A → AAC, or FLAC → FLAC in a different container) are stream-copies — bit-exact, no quality loss whatsoever. Codec changes (FLAC → MP3, WAV → MP3) require transcoding to a lossy format — there's some quality loss, though it's usually inaudible at 192kbps+ MP3.
What's stream-copy?+
When the source and target use the same codec — just a different container format — FFmpeg can copy the encoded audio bitstream without re-encoding. The result is mathematically identical to the source. Stream-copy completes in seconds regardless of file length.
Which format should I pick?+
MP3 for universal compatibility; WAV for archival or editing input; FLAC for lossless archival at half the size of WAV; AAC for slightly better compression than MP3 at the same bitrate; OGG for open-source workflows or when Vorbis is preferred; M4A for Apple-native compatibility.
Can I batch-convert multiple files?+
Yes — drop multiple files and the tool processes them sequentially, then offers a zip of the results.
What about M4A — is it different from AAC?+
M4A is the file container; AAC is the audio codec inside. Most M4A files contain AAC audio. So 'convert M4A to AAC' is usually just a container change (stream-copy, instant); 'convert AAC to M4A' is the same. 'Convert M4A to MP3' requires transcoding.
What's the underlying engine and license?+
FFmpeg.wasm v0.12.x with @ffmpeg/core v0.12.6 (LAME, FAAC, native Vorbis, native Opus, native FLAC encoders built in). FFmpeg itself is LGPL-licensed; the wasm wrapper is MIT.