Files
Mindustry/core/convert_sounds.sh

13 lines
220 B
Bash
Raw Normal View History

2019-08-15 13:33:23 -04:00
#convert from stereo to mono
2019-08-15 14:16:41 -04:00
cd assets/sounds/
for i in *.ogg; do
2019-08-15 13:33:23 -04:00
echo $i
2019-08-15 14:16:41 -04:00
ffmpeg -i "$i" -ac 1 "OUT_$i"
2019-08-15 13:33:23 -04:00
done
2019-08-15 14:16:41 -04:00
find . -type f ! -name "OUT_*" -delete
for file in OUT_*; do mv "$file" "${file#OUT_}"; done;
cd ../../