04-03-2020, 02:51 PM
I'd use ffmpeg. If the source files are mono, presumably you just want one of the channels, rather than mixing them together (which might modify the sound data, e.g. volume differences).
For Windows, figure out the same thing based on the example at https://stackoverflow.com/a/24273691.
For Linux, do something like this (untested):
For Windows, figure out the same thing based on the example at https://stackoverflow.com/a/24273691.
For Linux, do something like this (untested):
Code:
for i in *.wav; do ffmpeg -i "$i" -map_channel 0.0.0 mono-"$i"; done