Users browsing this thread: 1 Guest(s)
Mass editing WAV files?
#2
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):
Code:
for i in *.wav; do ffmpeg -i "$i" -map_channel 0.0.0 mono-"$i"; done
Reply
Thanked by:


Messages In This Thread
Mass editing WAV files? - by the shirt ninja - 04-02-2020, 04:45 PM
RE: Mass editing WAV files? - by Simpsons Dumper - 04-03-2020, 02:51 PM
RE: Mass editing WAV files? - by the shirt ninja - 04-05-2020, 05:01 AM

Forum Jump: