1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-21 21:38:29 +03:00
Mindustry/core/convert_sounds.sh

13 lines
220 B
Bash
Raw Normal View History

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