Mindustry/core/convert_sounds.sh

13 lines
220 B
Bash
Raw Normal View History

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