Convert MP3 from Mono to Stereo Using Lame – How to Guide

lamemonomp3stereo

An application requires that the mp3 files it receives are encoded with 2 channels (stereo), but the original files have only 1 channel (mono).
We use Lame for conversion, but i fail to make it clone the mono channel and create a fake stereo.

lame.exe -m j mono.mp3 stereo.mp3

-m d or -m s doesn't seem to work either. Is it possible to do this with lame?

Best Answer

The answer to my own question is: No - it is not possible with lame

My work-around solution is to use the command-line tool sox and do the channel duplication prior to mp3-conversion:

sox mono.wav -c 2 stereo.wav

Then afterwards use lame:

lame -m j stereo.wav stereo.mp3
Related Question