3
I have a bunch mono .wav files which I need to convert to stereo in order to run thru lame. Lame can't encode stereo mp3s from mono input so that's what I need to do.
I don't need any modifications to the data made other than duplicating channel into two.
I've tried to use sox and it seems to alter sound data in eerie ways by up-downsampling and changing bit depths in between as well as running filters I don't need.
So please recommend me some tool to batch convert .wav files from mono to stereo. I'm on linux.
sox doesn't do verbatim conversion, it applies numerous transforms and filters (in your case, for example, dither - look up
-D; but god knows what else) – alamar – 2013-11-30T12:00:28.023Uh, no. With only
channelsit either duplicates or downmixes unless the format has to be changed for some reason.$ sox -V ...sox INFO sox: effects chain: input 48000Hz 1 channelssox INFO sox: effects chain: channels 48000Hz 2 channelssox INFO sox: effects chain: output 48000Hz 2 channels– Ignacio Vazquez-Abrams – 2013-11-30T12:02:38.380