Download this file
10 lines (7 with data), 177 Bytes
| #!/bin/bash
for i in `cat stereo_recordings.txt`;
do
sox $i `echo $i | sed 's/\.wav$//g'`_1.wav remix 1;
sox $i `echo $i | sed 's/\.wav$//g'`_2.wav remix 2;
rm $i;
done
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.