script to run sox to combine multiple mono tracks to stereo
- by Ze'ev
I have a folder full of .wav audio files.
Some are stereo, most are mono splits.
The mono split pairs are all named foo bar track.L.wav and foo bar track.R.wav
I can use the command line tool sox to combine a mono pair into 1 stereo track like this:
sox -M track1.L.wav track1.R.wav track1.Stereo.wav
where the first 2 files are the mono pairs,…