How to Convert Audio Files Online

· 9 min read

Audio files come in many formats, and not every device or platform supports every one. Converting between formats lets you play your audio anywhere, reduce file sizes, prepare files for editing, or fit under a podcast platform's upload limit. Understanding why each format exists, where it shines, and where it bites turns conversion from guesswork into a small but reliable craft.

A short history of audio formats

The story starts with WAV (1991), Microsoft and IBM's wrapper around uncompressed PCM samples. WAV was simple, big, and universal; it remains the lingua franca of audio editing today. The arrival of MP3 (Fraunhofer Institut, finalised in 1993, standardised as MPEG-1 Audio Layer III) changed everything: a 50 MB WAV could become a 5 MB MP3 that sounded nearly identical, and suddenly portable players and dial-up music sharing became practical.

AAC followed in 1997 as the successor to MP3, offering better quality at the same bitrate, and was adopted by Apple for the iPod and iTunes. OGG Vorbis (2000) emerged as a patent-free alternative championed by the open-source community and game developers. FLAC (2001) became the standard for lossless music archiving once hard drives grew large enough to store it. Opus (2012, IETF RFC 6716) is the modern compression champion: it beats MP3, AAC, and Vorbis across nearly every bitrate, and it powers WebRTC, Discord, YouTube, Zoom, and most modern voice and music streaming. Each generation kept earlier formats in circulation because compatibility, not raw quality, drives adoption.

Audio formats explained

MP3: the most widely supported lossy format. Works on virtually every device and platform built in the last thirty years. Good balance of quality and file size at 192-320 kbps. Patents expired in 2017 so it is now royalty-free everywhere.

WAV: uncompressed audio. Perfect quality but very large files (about 10 MB per minute of stereo CD-quality audio). The standard format for audio editing, broadcast workflow, and short sound effects in games.

AAC, Apple's preferred lossy format. Slightly better quality than MP3 at the same bitrate. Used in iTunes, YouTube, Apple Music, and most streaming services. Files usually have the .m4a extension when stored in an MP4 container.

OGG Vorbis: an open-source lossy format. Similar quality to AAC, commonly used in games (Minecraft, Half-Life 2, many indie titles) and on Wikipedia for free-licence audio.

FLAC: lossless compression. Preserves perfect audio quality while reducing file size by about 50-60% compared to WAV. Popular for high-resolution music archiving, audiophile listening, and Bandcamp downloads.

Opus: modern open-format that beats every older codec at most bitrates. Default for WebRTC, Discord voice, YouTube short-form, and increasingly for low-latency game voice. Combines speech and music modes seamlessly.

ALAC: Apple Lossless. Same idea as FLAC but with Apple ecosystem support. Files end in .m4a (lossless variant). Useful if your library lives in iTunes / Apple Music.

WMA: Windows Media Audio. Largely obsolete outside legacy Windows applications. Convert to MP3 or AAC for portability.

AIFF: Apple's WAV equivalent, uncompressed and large. Used in older Macintosh audio workflows.

When to convert

From To Why
WAV MP3 Reduce file size for sharing or streaming
WAV FLAC Lossless archive at roughly half the size
FLAC MP3 Make files compatible with older devices or fit a 25 MB email
MP3 WAV Prepare for editing (avoid re-compression)
M4A/AAC MP3 Compatibility with non-Apple devices
WMA MP3 or AAC Move off a legacy Microsoft format
AIFF FLAC Smaller archive without quality loss
Any OGG / Opus Web projects, games, voice chat
Any Opus Modern voice or low-bitrate music
WAV AAC Smaller files for YouTube uploads (audio track)

How to convert audio online

  1. Upload your audio file: select a file in any supported format (MP3, WAV, AAC, OGG, FLAC, M4A, WebM, AIFF). The browser decodes it locally.
  2. Choose the output format and quality: select your target format and bitrate. Higher bitrates mean better quality but larger files.
  3. Pick the channels and sample rate if needed: mono for podcasts, stereo for music, 44.1 kHz for CD-quality, 48 kHz when the audio will be paired with video.
  4. Download the converted file, click Convert and download the result. Everything runs in your browser; no upload happens.

For batch conversions, queue multiple files and the converter processes them in sequence. Each file is decoded with the browser's Web Audio API and re-encoded with WebAssembly-compiled codecs.

Understanding bitrate, sample rate, and channels

Three numbers determine the size and quality of any audio file. Knowing what each one does lets you pick settings that match the purpose without guessing.

Bitrate measures how much data is used per second of audio. Higher bitrate = better quality = larger file. For lossy codecs, the bitrate is the most important quality control.

Bitrate Quality Best for
32-64 kbps Voice-grade AM radio quality, low-bandwidth voice
96 kbps Acceptable for speech Audiobook, lecture, very compressed podcast
128 kbps Acceptable for music Voice recordings, casual podcasts
192 kbps Good General listening
256 kbps Very good Music, careful listening
320 kbps Excellent Archiving lossy, best MP3 quality
Variable (V0, V2) Best efficiency Modern MP3 / Opus

For most purposes, 192-256 kbps is the sweet spot, good enough that most people cannot tell the difference from the original, while keeping files manageable. Opus reaches transparent quality at much lower bitrates: 96 kbps Opus often equals 192 kbps MP3.

Sample rate is how many audio snapshots are taken per second. 44.1 kHz (CD-quality) and 48 kHz (broadcast and video) cover almost everything. 22 kHz is fine for speech-only podcasts and halves file size. 96 kHz or 192 kHz only matters for studio production; consumer playback cannot resolve the difference.

Channels: mono uses one channel and halves the file. Stereo uses two. 5.1 and 7.1 surround are useful for film and game audio. Most podcasts ship in mono because spoken voice does not benefit from stereo.

CBR, VBR, and ABR

Three ways to spend the bitrate budget across a file:

For modern use, VBR with a quality target (Opus quality 5, LAME V2, AAC quality 0.5) gives the best ratio of perceived quality to file size.

Common pitfalls

Alternative tools and contexts

A web converter is the fastest path for one or a few files. For batches, scripting, or studio work, command-line tools and DAWs take over.

Tool Platform Strength Watch out for
Web audio converter Browser No install, no upload, batch UI Speed depends on the device
ffmpeg CLI, cross-platform The Swiss Army knife of audio/video Verbose flags, steep curve
sox CLI, cross-platform Audio-specific, excellent for effects chains Smaller community
LAME (CLI) CLI, cross-platform Reference MP3 encoder, V0-V9 quality MP3 only
Opus tools (opusenc) CLI Highest quality Opus encoder Single-format
Audacity Desktop Free editor with batch convert Heavy if all you need is convert
Reaper / Logic / Pro Tools Desktop DAW Studio editing and mastering Paid, overkill for conversion
iTunes / Apple Music Desktop Built-in AAC and ALAC encoding macOS-centric
HandBrake Desktop Video to audio extraction Video-first UI
ffmpeg -i in.wav -c:a libopus out.opus CLI one-liner Programmatic Get codec flags right

For automating podcast pipelines, ffmpeg scripts win. For one-off compatibility conversions, the web converter is faster and more private.

Privacy and the converter

The audio converter runs entirely in your browser. The file you select is read with the FileReader API, decoded by the browser's Web Audio API, and re-encoded by a WebAssembly codec into the target format. Nothing is uploaded, nothing is logged, and nothing is shared. For sensitive material, voice memos, interview recordings, draft podcast episodes, private meeting transcripts, that local-only flow is the difference between trusting a stranger's server and trusting no one. Audio files often carry hidden metadata: ID3 tags with titles and artists, recording device serial numbers, GPS coordinates from a phone microphone, timestamps, all data you may not want a third party to keep. The Canvas-style local pipeline keeps all of that under your control. For a task as routine as switching format, the privacy default should be: nothing leaves the page, nothing is stored, nothing is shared.

Frequently Asked Questions

Does converting audio reduce quality?

Converting to WAV or FLAC is lossless, no quality loss. Converting to MP3, AAC, or OGG applies lossy compression. At 256-320 kbps, the quality difference is imperceptible to most listeners.

What is the best audio format?

There is no single best format. MP3 is the most compatible. AAC sounds slightly better than MP3 at the same bitrate. FLAC is lossless for archiving. WAV is uncompressed and universal for editing.

Can I convert multiple files at once?

Yes. Upload multiple files and they will be converted sequentially. Download them individually or as a ZIP.

Are my audio files uploaded to a server?

No. All processing happens in your browser. Your files stay on your device.

What is the difference between bitrate and sample rate?

Sample rate is how many times per second the audio is captured (44.1 kHz for CDs, 48 kHz for video). Bitrate is how many bits of data are used per second of audio after compression. Sample rate sets the maximum possible frequency; bitrate sets how much detail is preserved at that sample rate.

Should I use VBR or CBR?

Variable bitrate (VBR) gives better quality per byte because it spends more bits on complex passages and fewer on silence. Constant bitrate (CBR) is more predictable for streaming and easier to seek through. For local files, VBR; for live streaming, CBR.