Audio that only plays in one ear
They recorded an interview or a meeting and on playback it is only in the left headphone. They think the recording is ruined. It is not — the audio is intact, it is just sitting in one channel of a stereo file.
The recording is not ruined. What almost always happened is that a mono microphone was written into a stereo file: the whole interview is sitting in the left channel and the right channel is digital silence. Nothing was lost, because there was never anything in the other channel to lose. The fix is to make the live channel play on both sides — either fold the file to mono, or copy the good channel over the dead one — and it takes a minute in Audacity, one command in FFmpeg, or the Stereo → Mono tool in the app if the file is still on your phone. Before any of that, check it is the file and not your headphones.
First: is it the file, or is it your headphones?
Half the people who search this have a good recording and a bad cable. The test takes ten seconds.
- Play something else. Any music track. If that is one-sided too, the file is innocent — it is the headphones, the jack, the Bluetooth link or a balance setting.
- Swap the earpieces round. If the silence follows the left earpiece, the cable has gone. If it stays on the left, it is coming from the audio.
- Check the balance slider. It is easy to nudge and nobody remembers doing it. Windows 11: Settings → Accessibility → Audio. macOS: System Settings → Accessibility → Audio. iOS: Settings → Accessibility → Audio & Visual, where the Balance slider sits directly above the Mono Audio switch.
Those same Accessibility screens carry a mono audio switch that sums both channels into both ears. If you only need to listen through the recording yourself, turn it on and stop reading. It changes nothing on disk, and it does not travel with the file, so it will not help the colleague you send it to.
Why one channel is silent
A stereo file has two independent tracks of samples. A mono microphone produces one. Something in the chain has to decide where that single track goes, and a lot of hardware answers "channel one, and leave channel two empty". The usual suspects:
- A lavalier or handheld mic in input 1 of a two-input interface, with the recorder set to a stereo pair.
- A TRS mono mic in a TRRS socket, or an adapter that only bridges the tip.
- A phone or field recorder left on a stereo preset while a mono external mic is attached.
- A camera or webcam that writes its built-in mic into channel one of the video file. Pull the audio out of that video and the problem comes with it.
None of it damages anything. Every sample that matters is present, at full level, in one channel. That is a container problem rather than an audio problem, which is why the repair costs nothing.
Working out which channel has the audio
Know which side is live before you throw the other away. Three ways:
- Headphones, one ear at a time. Crude, and completely reliable.
- VLC. The Audio → Stereo Mode menu has Left, Right and Mono entries. Force it to Left, then Right, and listen.
- Look at it. Open the file in Audacity, or anything that draws a waveform, and one of the two lanes will be a flat line. Seeing it beats hearing it, because a lane that is merely small rather than flat changes what you should do next.
Dropping the file on the converter on this site confirms it is stereo, alongside the codec, sample rate and bitrate read out of the header. It cannot tell you which channel is empty. Nothing can, without listening to them.
Some field recorders write a safety track to the second channel, 6 to 12 dB lower, so a shout that clips the main channel is still usable. Two-mic interview rigs do the same with one person per channel. Then the quiet channel is not empty, and deleting it throws away real audio. Solo the right channel in VLC with the volume up before you decide.
The fix: fold it, or copy the live channel across
There are two different repairs, and they are constantly conflated.
Folding to mono averages the channels: the output is (left + right) ÷ 2. If the right channel is silence, the average of your audio and nothing is your audio at half the amplitude — about 6 dB down. Correct, plays in both ears, and noticeably quieter until you bring the level back up.
Copying the live channel writes the left channel out at full level and ignores the right. No level drop, nothing to compensate for. Whenever one side is genuinely empty this is the better repair, and most guides never mention it.
| Tool | What to do | Fold or copy |
|---|---|---|
| Audacity | Click the track's name to open its dropdown → Split Stereo Track. Select the silent track, then Tracks → Remove Tracks. Export what is left. | Copy — full level |
| Audacity, the quick way | Tracks → Mix → Mix Stereo Down to Mono, then Effect → Volume and Compression → Amplify to put the 6 dB back | Fold |
| FFmpeg on the command line | ffmpeg -i in.m4a -af "pan=mono|c0=c0" -b:a 128k out.mp3 — swap c0=c0 for c0=c1 if the right channel is the live one | Copy — full level |
| FFmpeg, fold instead | ffmpeg -i in.m4a -ac 1 -b:a 128k out.mp3 | Fold |
| Keep it stereo, both sides equal | -af "pan=stereo|c0=c0|c1=c0" | Copy, duplicated |
| Audio Converter app | Tools → Stereo/Mono, then Normalize or Volume to recover the level. Writes a 16-bit WAV. | Fold |
The app is the practical route when the recording never left the phone, and its editing tools run on both iPhone and Android. Its Normalize is a peak normalisation — it lifts the file until the loudest single sample reaches full scale — so it undoes the fold neatly on a clean recording, and does very little if one stray thump already sits near the ceiling. Amplify by a fixed 6 dB in Audacity if you want to be exact.
The converter on this site is absent from that table for a reason. It changes format, bitrate, bit depth and length; it does not change channel count, so it will not do the fold. Use it for the step after — turning the repaired WAV into something small enough to send.
Does folding to mono lose anything?
If the second channel is silent, no. You are discarding an empty track. There is no stereo image to flatten, because one microphone never recorded one.
If both channels have content, yes. Summing two mics that heard the same room from different distances causes comb filtering — a thin, phasey sound as frequencies cancel. For a two-mic interview, keep the channels apart and use a real editor.
One cost applies either way: changing the channel count forces a re-encode. A converter can copy an audio stream from one container into another untouched, but only while every sample stays as it was. Change the channels and the samples change, so the file is decoded and compressed again. On an MP3 or an M4A that is a second lossy generation, and nothing can restore what the first encoder discarded — the arithmetic is here. Do the repair once, on the best copy you have.
Does a mono file get smaller? Sometimes
Halving the channels halves the number of samples, but only some formats charge you by the sample.
| Format | Stereo | Mono |
|---|---|---|
| WAV, 16-bit 44.1 kHz | about 10 MB a minute | about 5 MB a minute — exactly half |
| FLAC | varies with content | roughly half |
| MP3 at a fixed 128 kbps | about 1 MB a minute | about 1 MB a minute — no change |
| M4A/AAC at a fixed bitrate | bitrate × duration | bitrate × duration, identical |
A lossy encoder spends exactly the bitrate you ask for, whatever you feed it. The mono saving is not automatic — you take it by asking for a lower bitrate. Mono speech at 64 kbps holds up about as well as stereo speech at 128, and that is where the file halves. LAME also encodes stereo MP3s in joint stereo by default, storing the difference between the channels rather than each one separately, and the difference between your audio and silence compresses to almost nothing.
So if size is the real reason you are here, the bitrate is the lever, not the channel count. The size tool shows what each setting costs before you run it, and the WAV-versus-MP3 comparison covers why a repaired WAV is worth converting before you send it.
Most speech-to-text pipelines downmix to mono and resample to 16 kHz before the model hears anything, so a one-sided recording usually transcribes without complaint. The people listening are the ones who notice. Fix it for them.
Stopping it happening again
The setting you want is in the recorder, not the editor. Record one channel from one microphone and there is nothing to repair.
- In a recorder app or a field recorder, set channels to mono or 1 channel when a single mic is attached. Stereo presets are for stereo mic pairs.
- On Windows, in the classic Sound control panel, Recording tab, open the microphone's Properties → Advanced and set the Default Format to a 1 channel option.
- On a Mac, Audio MIDI Setup shows the input device's channel count, and most recording apps carry their own mono/stereo switch on top of it.
- In a DAW, create a mono track rather than a stereo one for a mono source. Same fix, one step earlier.
And if last week's job already produced twenty of these, the FFmpeg one-liner takes a wildcard. Repair them as a batch, listen to one result, then delete the originals.
The converter on the home page handles this. Free, no upload, no sign-up.