Put This Audio Converter on Your Own Website
This is a complete, browser-based audio converter and audio analyser. It reads any common audio file, tells you exactly what it is, and lets you convert it, resample it, adjust its bit depth, remap its channels, and preview the result before you ever download anything. It understands sample rates from 8 kHz all the way up to 192 kHz, handles bit depths of 16-bit, 24-bit, and 32-bit float, detects the real format hidden inside a file header, and can even estimate whether a "high-resolution" file is genuine or an upsampled impostor. There are no ads, no sign-ups, and no data collection. Everything runs inside an isolated container that never touches the page around it, and no audio you open is ever uploaded, stored, or logged.
If you would like to give your own visitors the same tool, you can embed it in a couple of minutes. Copy one of the snippets below and paste it wherever it makes sense on your site: inside a long-form article, in a sidebar, in a footer, or in a dedicated tools page. The converter loads instantly and works the same for every reader in the world, while the interface language adapts automatically to each visitor. It is available in six languages so it can meet your audience where they are: English, Spanish, French, Arabic, Chinese, and Hindi. The language you see controls the labels, the buttons, the instructions, the format descriptions, the sample-rate labels, and the output panel headers. For Arabic, the whole layout flips to right-to-left so the experience feels native rather than translated.
You can force a specific interface language by adding a parameter to the URL: ?lang=en. The available codes are en, es, fr, ar, zh, and hi. Leave it out and the tool will detect the visitor's language from their browser on the first visit and remember the choice afterward.
1. Isolated iFrame (ideal for articles and pages)
If you are publishing a tutorial, a deep dive about digital audio, or a resource for musicians, podcasters, and audio engineers, this method drops the fully working tool straight into the flow of your content. The iframe stays contained, so your layout remains clean and your readers can analyse files and explore conversion options without ever reloading the page. Every feature behaves exactly as described: the format detection, the sample-rate handling, the bit-depth conversion, the channel mapping, and the three working panels for File Information, Conversion Settings, and Preview all live inside one small, self-contained frame on your site. The accompanying script auto-detects your page language and resizes the frame to fit the tool, so there is never an awkward scrollbar or empty gap.
<iframe data-tooliqo src="https://tools.tooliqo.co/audio-converter/?lang=en"title="Tooliqo — audio-converter" style="width:100%;border:0;height:900px" height="900" loading="lazy" scrolling="no" allowfullscreen allow="fullscreen; clipboard-write"></iframe> <script src="https://tools.tooliqo.co/embed.js" async></script>
2. Lightweight Script (suitable for sidebars and templates)
For sidebars, footers, and widget areas, this lighter integration loads the tool on demand and adapts to its container. It is the same engine, the same format detection, the same sample-rate and bit-depth handling, the same channel mapping, the same three output panels, and the same six-language support, just packaged for places where a full iframe might feel heavy. Drop it into your template and the tool appears exactly where you want it.
<div class="tooliqo-tool" data-tool="audio-converter" data-lang="en"data-height="900"></div> <script src="https://tools.tooliqo.co/embed.js" async></script>
Both methods load the same tool, and both respect a visitor's dark-mode and reduced-motion preferences. There are no watermarks, no daily limits, and no tracking of any kind. If a reader opens a file, discovers it is really 44.1 kHz upsampled to 96 kHz, and decides to convert it back to a sensible format, the tool has done its job. What they do next is up to them, which was always the point.
What This Guide Covers
Audio conversion looks simple from the outside: pick a file, pick a format, click a button. Underneath, it touches some of the most interesting ideas in signal processing, and getting it right can be the difference between a crisp podcast and a muddy one, a compact music library and a bloated one, or an archive that lasts decades and a folder full of files nobody can open in ten years. This guide walks through all of it in plain language. Use the links to jump to any section.
- What an audio converter actually does
- How this converter works: everything stays on your device
- Audio formats explained, lossy and lossless
- Sample rate: how often sound is measured
- Bit depth: the resolution of loudness
- Channels: mono, stereo, and beyond
- Bitrate: the real dial for quality and size
- Lossless versus lossy, and how to spot fake hi-res
- The math behind every conversion
- Quick reference values and conversion tables
- Real-world conversion scenarios
- Best practices to avoid losing quality
- Common conversions, step by step
- Frequently asked questions
What an Audio Converter Actually Does
An audio converter changes a sound recording from one file format to another. That sentence hides a lot of work. A digital audio file is not sound; it is a set of numbers that describe sound, wrapped in a container that tells a player how to read them. Converting between formats means decoding those numbers back into a raw stream of audio samples, optionally reshaping that stream, and then re-encoding it under a new set of rules. The rules can differ in how the audio is compressed, how many times per second the sound was measured, how finely each measurement was recorded, and how many separate channels are carried.
People reach for a converter for very ordinary reasons. A voice memo recorded on a phone arrives as an M4A file and needs to become an MP3 so it will play on an old car stereo. A musician exports a mix as a giant WAV and wants a FLAC that is half the size but still bit-perfect. A podcaster has a stereo interview that only needs to be mono, because two identical channels are just wasted space for spoken word. A video editor needs everything at 48 kHz so the audio lines up with the footage. A listener downloads a track advertised as high-resolution and quietly wonders whether it really is. Every one of those tasks is a conversion, and every one benefits from a tool that shows you what you have before it changes anything.
The best converters are honest about a truth the marketing rarely mentions: converting to a "better" format almost never improves audio you already have. You cannot add detail that was thrown away. Turning a 128 kbps MP3 into a 24-bit WAV produces a large file that sounds exactly like the 128 kbps MP3, because the information lost during the first compression is gone for good. What a converter can do is make your audio smaller, more compatible, easier to edit, or better suited to a specific job. Understanding the difference is the whole game, and it is what the sections below are built around.
How This Converter Works: Everything Stays on Your Device
Most online converters follow the same recipe: you upload your file to a server you have never seen, a machine somewhere processes it, and you download the result. That model works, but it asks you to hand your audio to a stranger. For a meme sound effect, fine. For an unreleased demo, a confidential interview, a client's raw stems, or a private voice recording, that is a real cost that most people never think about.
This tool takes the opposite approach. It runs entirely in your browser using the Web Audio API, the same audio engine built into every modern browser. When you open a file, it is decoded locally, in memory, on your own machine. The format detection, the sample-rate conversion, the bit-depth adjustment, the channel mapping, the loudness normalisation, and the final encoding all happen without a single trip to a server. Nothing is uploaded. Nothing is stored. Nothing is logged. Close the tab and the whole session evaporates, along with any trace of what you were working on.
There is a practical bonus to this design beyond privacy: speed. Because there is no upload and no download of the source, large files do not crawl through your connection twice. The only limit is your device's own memory and processor, which for typical music and speech files is more than enough. And because the tool lives inside an isolated frame, it cannot read the page around it, and the page cannot reach into it. On a Blogger post, a WordPress article, or a static site, it behaves like a sealed appliance sitting on the page rather than a script tangled into your template.
Audio Formats Explained: Lossy and Lossless
The first decision in any conversion is the target format, and formats split into two families. Lossless formats preserve every sample exactly, so decoding one gives you back a perfect copy of the original audio. Lossy formats throw away parts of the signal that models of human hearing predict you will not notice, in exchange for dramatically smaller files. Neither family is "better" in the abstract. A lossless archive master and a lossy streaming file are answers to different questions.
Within lossless, there is a further distinction. WAV is uncompressed, meaning the samples are stored raw, which makes it universal and instant to read but very large. FLAC and Apple's ALAC are compressed losslessly, using clever prediction to shrink the file by roughly forty to sixty percent while still decoding back to the exact original, sample for sample. Think of FLAC as a ZIP file for audio: smaller on disk, identical when opened.
Here is how the common formats compare in practice.
| Format | Family | Compression | Typical bitrate | Best suited for |
|---|---|---|---|---|
| MP3 | Lossy | About 10:1 | 128–320 kbps | Maximum compatibility, music, podcasts, anywhere |
| AAC (.m4a) | Lossy | About 10:1 | 128–256 kbps | Apple devices, YouTube, streaming; better than MP3 per bit |
| Opus | Lossy | Very high | 32–256 kbps | Voice, calls, web audio; best quality at low bitrates |
| OGG Vorbis | Lossy | About 10:1 | 96–320 kbps | Open-source projects, games; royalty-free |
| WAV (PCM) | Lossless, uncompressed | None | ~1,411 kbps at CD quality | Editing, mastering, short-term working files |
| FLAC | Lossless, compressed | About 2:1 | ~700–1,000 kbps | Archiving, hi-res libraries, audiophile storage |
| ALAC (.m4a) | Lossless, compressed | About 2:1 | Similar to FLAC | Lossless inside the Apple ecosystem |
A quick rule of thumb: if you are distributing or listening, a good lossy format such as AAC or a high-bitrate MP3 is almost always the right call, because the files are small and the quality is transparent to most ears. If you are storing masters, editing, or archiving something you may never be able to re-download, choose lossless, and choose FLAC over WAV unless a specific tool demands raw PCM. Opus deserves a special mention for speech: at bitrates where MP3 sounds rough, Opus still sounds clean, which is why it quietly powers most voice chat on the internet.
Sample Rate: How Often Sound Is Measured
Sound is a continuous wave, but a computer can only store snapshots. The sample rate is how many snapshots are taken every second, measured in hertz. CD audio uses 44,100 samples per second, written 44.1 kHz. The reason for that oddly specific number goes back to a fundamental result called the Nyquist theorem, which says that to capture a frequency perfectly you must sample at least twice as fast as that frequency. Human hearing tops out around 20 kHz, so a sample rate a little above 40 kHz is enough to reproduce everything a person can hear. The extra headroom in 44.1 kHz leaves room for the filters that keep the process clean.
This is where a lot of confusion lives. Higher sample rates such as 96 kHz and 192 kHz can capture frequencies far beyond human hearing, but you cannot hear those frequencies, so they do not make music sound "better" in any way your ears can detect. What higher rates genuinely help with is production: they give engineers more room to apply effects, pitch-shift, and filter without artefacts, and they matter for scientific and archival work. For finished listening files, 44.1 kHz or 48 kHz is all anyone needs. The table below lays out the landscape.
| Sample rate | Highest captured frequency (Nyquist) | Where you find it |
|---|---|---|
| 8,000 Hz (8 kHz) | 4 kHz | Telephone, basic voice |
| 11,025 Hz | ~5.5 kHz | Low-quality voice recordings |
| 16,000 Hz (16 kHz) | 8 kHz | VoIP, wideband speech, voice assistants |
| 22,050 Hz | ~11 kHz | Low-fi music, older web audio |
| 32,000 Hz (32 kHz) | 16 kHz | FM radio, some camcorders |
| 44,100 Hz (44.1 kHz) | 22.05 kHz | CD audio, most music, MP3 |
| 48,000 Hz (48 kHz) | 24 kHz | Video, film, broadcast, most DAWs |
| 88,200 Hz | 44.1 kHz | Hi-res, twice CD rate |
| 96,000 Hz (96 kHz) | 48 kHz | Studio recording, hi-res audio |
| 176,400 Hz | 88.2 kHz | Hi-res, four times CD rate |
| 192,000 Hz (192 kHz) | 96 kHz | Mastering, archival, ultra hi-res |
When you downsample, say from 96 kHz to 44.1 kHz, a good converter applies a proper filter so the change is clean. When you upsample, from 44.1 kHz to 96 kHz, you are not adding any real detail; you are just describing the same audio with more numbers. That is worth remembering the next time a file boasts a huge sample rate. The number alone tells you nothing about how the music was actually recorded.
Bit Depth: The Resolution of Loudness
If sample rate is how often you measure the wave, bit depth is how precisely you measure each snapshot's height. More bits mean more possible values for each sample, which translates directly into dynamic range, the distance between the quietest sound a format can represent and the loudest before it distorts. Each bit adds roughly 6 dB of dynamic range.
Sixteen-bit audio, the CD standard, gives about 96 dB of range, which comfortably covers the difference between a whisper and a loud passage in almost any music. Twenty-four-bit audio pushes that to around 144 dB, far more than any room or speaker can reproduce, but that extra headroom is priceless while recording and mixing, because it means quiet parts can be captured cleanly and levels can be adjusted later without the noise floor creeping up. Thirty-two-bit float is a different animal: it stores samples as floating-point numbers, so it is effectively impossible to clip, which is why modern field recorders love it. You can record a sudden shout at the wrong level and recover it perfectly in editing.
| Bit depth | Approx. dynamic range | Distinct amplitude levels | Where it is used |
|---|---|---|---|
| 8-bit | ~48 dB | 256 | Retro games, telephony, low-fi effects |
| 16-bit | ~96 dB | 65,536 | CD audio, standard distribution files |
| 24-bit | ~144 dB | 16,777,216 | Studio recording, hi-res, editing headroom |
| 32-bit float | Effectively unclippable | Enormous | DAW internal processing, field recorders |
For a finished file that people will simply listen to, 16-bit is transparent and sensible. Reserve 24-bit and 32-bit float for the stages where you are actually capturing or manipulating audio, and where the extra room protects you from mistakes. Converting a 16-bit file up to 24-bit does not recover any detail; it only pads each sample with zeros. The value of high bit depth is captured at the moment of recording, not invented later by a converter.
Channels: Mono, Stereo, and Beyond
A channel is a single stream of audio meant for a single speaker position. Mono carries one channel, stereo carries two, left and right, and surround formats carry more. Channel decisions are one of the easiest ways to cut file size in half without any audible loss, as long as you understand what the audio actually contains.
Spoken word is the classic example. A podcast recorded into a single microphone has no meaningful stereo information; the left and right channels are identical copies. Folding that to mono halves the file size and changes nothing a listener can hear. Music is the opposite case, since the stereo image, the sense of instruments spread across a soundstage, is part of the art, and collapsing it to mono flattens that space. A good converter lets you make the call rather than deciding for you: fold stereo to mono, keep stereo, swap the left and right channels if they were recorded backwards, or extract a single channel when only one side holds what you need.
| Configuration | Channels | Good for |
|---|---|---|
| Mono | 1 | Speech, podcasts, voice memos, telephone-style audio |
| Stereo | 2 | Music, ambience, anything with a left-right image |
| Stereo folded to mono | 2 → 1 | Halving size when both channels are identical |
| Channel swap | 2 | Fixing recordings where left and right were reversed |
| Single-channel extract | 2 → 1 | Pulling one usable side out of a dual-mono recording |
Bitrate: The Real Dial for Quality and Size
For lossy formats, bitrate is the setting that matters most. It is the number of bits used to describe each second of audio, measured in kilobits per second, and it directly controls the trade-off between quality and file size. A higher bitrate keeps more of the original signal and produces a larger file; a lower bitrate discards more and produces a smaller one. This is the dial you actually turn when you convert to MP3 or AAC.
The practical sweet spots are well established by decades of listening tests. For music, 192 kbps is the point where most people stop being able to tell the compressed file from the original, and 256 kbps is safely transparent for nearly everyone. The MP3 ceiling of 320 kbps is genuinely indistinguishable from lossless for the vast majority of listeners on the vast majority of gear. For speech, you can go much lower, because the human voice is simpler than a full orchestra: 96 kbps is plenty, and 64 kbps is fine for audiobooks. The table shows quality and the size each bitrate produces per minute.
| Bitrate | Perceived quality | Typical use | Size per minute |
|---|---|---|---|
| 64 kbps | Low, radio-like | Audiobooks, spoken word | ~0.46 MB |
| 96 kbps | Acceptable | Speech, low-bandwidth | ~0.69 MB |
| 128 kbps | Good, common standard | Casual music, podcasts | ~0.92 MB |
| 160 kbps | Very good | Everyday music | ~1.14 MB |
| 192 kbps | Excellent, the sweet spot | Music you care about | ~1.37 MB |
| 256 kbps | Near-transparent | High-quality music | ~1.83 MB |
| 320 kbps | Transparent, MP3 maximum | Audiophile lossy | ~2.29 MB |
One subtlety worth knowing: not all bitrates are created equal across formats. Because AAC and Opus are more efficient encoders than MP3, a 128 kbps AAC file usually sounds noticeably better than a 128 kbps MP3, and a 96 kbps Opus file can rival a 128 kbps MP3. If small size matters and your target devices support it, a modern codec buys you real quality at a lower bitrate. If universal playback matters more, a high-bitrate MP3 remains the safest bet on the planet.
Lossless Versus Lossy, and How to Spot Fake Hi-Res
Everything above comes together in one recurring question: is this file as good as it claims to be? The internet is full of audio that has been converted the wrong way, and the labels do not always tell the truth. The most common problem is transcoding, where a lossy file is re-encoded into another lossy format, or worse, wrapped in a lossless container to look premium. Converting a 128 kbps MP3 to FLAC does not restore anything. It produces a large lossless file that faithfully preserves the flaws of the MP3 it came from. The file is "lossless" in the technical sense and mediocre in every sense that matters.
You can often catch these impostors by looking at the frequency content. Lossy encoders save space by discarding the highest frequencies, so a file that started life as an MP3 usually has a sharp cliff where all sound simply stops, commonly around 16 to 20 kHz depending on the original bitrate. A genuine lossless recording from a good source has energy extending smoothly up to the limit its sample rate allows. When a "96 kHz, 24-bit" file has a hard wall at 16 kHz, the extra sample rate and bit depth are decoration on top of what was really a compressed source. This is exactly the kind of analysis a good converter can surface for you before you commit to storing something.
The honest workflow follows from all of this. Keep your masters lossless. Distribute in a good lossy format. Never upconvert a lossy file and expect improvement, and be suspicious of any hi-res claim you cannot verify. When you do need to convert, convert from the best source you have, not from an already-degraded copy. A single lossy step is usually transparent; stacking several of them is how audio slowly turns to mush.
The Math Behind Every Conversion
Under the friendly buttons, audio conversion is arithmetic, and knowing the formulas lets you predict file sizes, understand loudness changes, and sanity-check anything a tool tells you. The relationships below are the same ones built into the calculator panel of this converter, and they are exact, not approximations.
File size formulas
| What you want | Formula | Worked example |
|---|---|---|
| Compressed size (lossy) | bytes = bitrate (kbps) × 1000 ÷ 8 × seconds | 320 kbps for 180 s → 7,200,000 bytes ≈ 7.2 MB |
| Uncompressed size (WAV / PCM) | bytes = sample rate × (bit depth ÷ 8) × channels × seconds | 44,100 × 2 × 2 × 60 = 10,584,000 bytes ≈ 10.1 MB |
| Approx. source bitrate | kbps = file bytes × 8 ÷ seconds ÷ 1000 | A 3-minute file of 7.2 MB → about 320 kbps |
The uncompressed formula explains why raw WAV files feel enormous. One minute of ordinary CD-quality stereo is already more than 10 megabytes, and a full album can pass 600 megabytes before you have added a single effect. It also explains why FLAC is so popular: it delivers that exact same audio in roughly half the space.
Loudness and decibels
Volume changes are measured in decibels, which are logarithmic rather than linear. This trips people up constantly, because doubling the actual amplitude of a signal is only a change of about 6 dB, not a change of 100 percent on a slider. The conversions below tie decibels to a plain multiplier.
| Relationship | Formula |
|---|---|
| Decibels to amplitude ratio | ratio = 10(dB ÷ 20) |
| Amplitude ratio to decibels | dB = 20 × log10(ratio) |
| Gain | Amplitude multiplier | In words |
|---|---|---|
| +6 dB | × 2.00 | Twice as loud in amplitude |
| +3 dB | × 1.41 | A clearly audible boost |
| 0 dB | × 1.00 | No change |
| −3 dB | × 0.71 | A clearly audible cut |
| −6 dB | × 0.50 | Half the amplitude |
| −12 dB | × 0.25 | A quarter of the amplitude |
| −20 dB | × 0.10 | One tenth, a large drop |
Samples, time, frequency, and pitch
The last group of relationships connects the digital world of samples to the physical world of frequency and musical pitch. They are useful for editing to the sample, for understanding room acoustics, and for tuning instruments.
| Relationship | Formula | Worked example |
|---|---|---|
| Samples from time | samples = seconds × sample rate | 1 s at 48 kHz = 48,000 samples |
| Time from samples | seconds = samples ÷ sample rate | 1,024 samples at 44.1 kHz ≈ 23.2 ms |
| Wavelength from frequency | λ = c ÷ f, with c ≈ 343 m/s in air | 440 Hz → about 0.78 m |
| Note to frequency | f = 440 × 2((n − 69) ÷ 12), n = MIDI number | A4 (n = 69) = 440 Hz; middle C (n = 60) = 261.63 Hz |
| Unit relationship | Value |
|---|---|
| Bits in a byte | 1 byte = 8 bits |
| Binary data sizes | 1 KB = 1024 B, 1 MB = 1024 KB, 1 GB = 1024 MB |
| Bitrate units | 1 kbps = 1000 bps, 1 Mbps = 1000 kbps |
Quick Reference Values and Conversion Tables
This section gathers the numbers people look up most often while working with audio, so you can keep it open in a tab while you convert. Frequencies use equal temperament with A4 tuned to the modern standard of 440 Hz.
| Note | Frequency | Note | Frequency |
|---|---|---|---|
| A0 | 27.50 Hz | C1 | 32.70 Hz |
| A1 | 55.00 Hz | C2 | 65.41 Hz |
| A2 | 110.00 Hz | C3 | 130.81 Hz |
| A3 | 220.00 Hz | C4 (middle C) | 261.63 Hz |
| A4 (concert pitch) | 440.00 Hz | C5 | 523.25 Hz |
| A5 | 880.00 Hz | C6 | 1046.50 Hz |
| A6 | 1760.00 Hz | C7 | 2093.00 Hz |
| A7 | 3520.00 Hz | C8 | 4186.01 Hz |
| Band | Frequency range | What it carries |
|---|---|---|
| Sub-bass | 20–60 Hz | Felt more than heard, deep kick and rumble |
| Bass | 60–250 Hz | Warmth, weight, bass lines and low toms |
| Low midrange | 250–500 Hz | Body of most instruments and voices |
| Midrange | 500 Hz–2 kHz | Presence and intelligibility of vocals |
| Upper midrange | 2–4 kHz | Attack, clarity, and edge |
| Presence | 4–6 kHz | Detail and definition |
| Brilliance | 6–20 kHz | Air, sparkle, cymbals and sibilance |
| Format and setting | Approx. size per hour |
|---|---|
| MP3 at 128 kbps | ~55 MB |
| MP3 at 320 kbps | ~137 MB |
| AAC at 256 kbps | ~110 MB |
| FLAC (CD quality) | ~300–350 MB |
| WAV (16-bit, 44.1 kHz, stereo) | ~605 MB |
| WAV (24-bit, 96 kHz, stereo) | ~1.9 GB |
Real-World Conversion Scenarios
Formulas and tables are useful, but most people arrive with a specific problem. Here are the situations that come up again and again, and the sensible answer for each.
The podcaster. You recorded an interview and the file is a large stereo WAV. Your audience streams on phones, so size and compatibility win. Fold to mono if both channels are identical, set the sample rate to 44.1 kHz, and export MP3 at 128 kbps or AAC at 96 to 128 kbps. The episode will sound clean and download fast, and you will have shrunk a bloated master into something practical.
The musician archiving a mix. Your DAW exported a 24-bit, 48 kHz WAV master. You want to keep it safe without eating your whole drive. Convert to FLAC. You lose nothing, you keep every bit of the original, and you reclaim roughly half the space. Keep the WAV only if a mastering house specifically asks for it.
The video editor. Your footage is 48 kHz but your music is 44.1 kHz, and the audio drifts out of sync over long clips. Resample the music to 48 kHz before you drop it into the timeline so everything shares one clock. This is one of the few times a sample-rate conversion is not optional but essential.
The listener with a suspicious download. A track claims to be 96 kHz hi-res, but something feels off. Open it, look at where its frequency content ends, and check whether there is a hard cliff around 16 kHz. If there is, it was almost certainly a lossy file dressed up as hi-res, and you can convert it down to a sane 44.1 kHz FLAC or a 256 kbps AAC without losing anything real, saving space in the process.
The person with a folder of voice memos. Dozens of M4A recordings need to become MP3s for a transcription service that only accepts MP3. Convert to mono MP3 at 64 to 96 kbps. Speech does not need stereo or a high bitrate, and the smaller files upload faster.
Best Practices to Avoid Losing Quality
A few habits separate conversions that preserve your audio from conversions that quietly damage it.
- Always convert from the best source. Go back to the original master whenever you can, rather than converting a copy of a copy. Each lossy generation loses a little more.
- Do not stack lossy formats. Converting MP3 to AAC to Opus compounds the damage. If you must re-encode, do it once, from a lossless source.
- Match the sample rate to the destination, not to a bigger number. Use 44.1 kHz for music and 48 kHz for video. Upsampling adds size, not quality.
- Keep bit depth high only where it helps. Record and edit in 24-bit, but deliver in 16-bit. The listener gains nothing from a 24-bit distribution file.
- Choose channels deliberately. Fold speech to mono, keep music in stereo, and never assume the tool knows which is which.
- Normalise, do not maximise. Bringing a quiet file up to a consistent level is helpful; crushing everything to be as loud as possible removes the dynamics that make audio feel alive.
- Archive lossless, share lossy. This single rule prevents most regret. Your future self will thank you for the FLAC master, and your audience will thank you for the small download.
Common Conversions, Step by Step
The process is the same for every conversion in this tool, which is part of the point. Open the file, read what it is, choose your settings, preview, and download.
- Open your audio file. Drag it in or browse to it. The File Information panel immediately shows the format, sample rate, bit depth, channels, duration, and size, so you know exactly what you are starting with.
- Pick your output format. Choose lossy for sharing and listening, or lossless for editing and archiving, using the format table above as your guide.
- Set sample rate, bit depth, and channels. Match them to the job. For most listening files, 44.1 kHz, 16-bit, and the source channels are right. For video, switch to 48 kHz.
- Choose bitrate or quality. For lossy output, 192 to 256 kbps is transparent for music and 64 to 96 kbps is plenty for speech.
- Adjust if needed. Trim silence from the ends, nudge the gain, add a fade, or normalise the level so it sits at a consistent loudness.
- Preview, then download. Listen to the result in the Preview panel before you commit. When it sounds right, download it. Nothing left your device during the whole process.
Frequently Asked Questions
Does converting to a higher bitrate or sample rate improve quality?
No. You cannot add detail that was never captured or that was already discarded. Converting a lossy file to a larger format simply preserves what you already have inside a bigger container. Quality is set at the moment of recording and at the first compression step, not by later conversions.
Which format should I use, MP3 or WAV?
It depends on the job. Use WAV or FLAC when you are editing, mastering, or archiving and you need every sample intact. Use MP3 or AAC when you are sharing or listening and you want small, compatible files. FLAC is usually the smarter lossless choice because it is much smaller than WAV while remaining bit-perfect.
Is my audio uploaded anywhere when I use this tool?
No. All decoding, analysis, and conversion happen locally in your browser using the Web Audio API. Your files are never transmitted, stored, or logged, and the session disappears when you close the tab.
What bitrate is best for a podcast?
For spoken word, 64 to 96 kbps in mono is usually plenty and keeps files small. If your show has music or rich sound design, step up to 128 kbps. Reserve higher bitrates for content where the extra fidelity actually earns its size.
How can I tell if a hi-res file is genuine?
Look at where its frequency content ends. Real high-resolution audio has energy extending smoothly toward the top of its range, while a lossy source re-labelled as hi-res usually shows a hard cutoff around 16 to 20 kHz. A high sample rate on the label means nothing if the sound stops early.
Should I convert stereo speech to mono?
Usually yes. If both channels carry the same voice, folding to mono halves the file size and changes nothing you can hear. Keep stereo only when the two channels genuinely differ, as they do in music or in interviews recorded on separate microphones panned apart.
Why is my WAV file so large?
Because WAV stores every sample uncompressed. One minute of CD-quality stereo is already over 10 megabytes. If size is a concern and you still want lossless quality, convert to FLAC, which typically halves the size with no loss at all.
Does the tool work offline and on mobile?
The core conversion runs on your device, so once the page has loaded it does its work without a server. It runs in modern mobile and desktop browsers alike and respects your device's dark-mode and reduced-motion settings.
The Bottom Line
Audio conversion rewards a little understanding. Once you know that sample rate is how often sound is measured, that bit depth is how precisely each measurement is stored, that channels can often be halved for free, and that bitrate is the real dial between quality and size, the choices stop feeling like guesswork. You start converting with intent: lossless for the things you want to keep forever, a good lossy format for the things you want to share, the right sample rate for the destination, and no wishful upconverting that adds bytes instead of music.
That is what this converter is built to support. It shows you what you have before it changes anything, it gives you full control over format, sample rate, bit depth, channels, and level, it previews the result so nothing is a surprise, and it does all of it privately, on your own device, with no ads and no data collection. Whether you are a podcaster shrinking an episode, a musician archiving a mix, an editor lining up audio to video, or a listener double-checking a download, the tool gets out of the way and lets you do the work. The format is never really the point. The understanding and the control are, and now both are in your hands.
