1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-20 04:47:54 +03:00

convert_sounds.sh is no longer needed

This commit is contained in:
Anuken 2021-07-04 19:14:11 -04:00
parent 4ed9f10c1b
commit 416007593f

View File

@ -1,12 +0,0 @@
#convert from stereo to mono
cd assets/sounds/
for i in *.ogg; do
echo $i
ffmpeg -i "$i" -ac 1 "OUT_$i"
done
find . -type f ! -name "OUT_*" -delete
for file in OUT_*; do mv "$file" "${file#OUT_}"; done;
cd ../../