1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-11-11 03:31:19 +03:00
Mindustry/core/convert_sounds.sh

6 lines
108 B
Bash
Raw Normal View History

2019-08-15 20:33:23 +03:00
#convert from stereo to mono
for i in assets/sounds/*.ogg; do
echo $i
ffmpeg -i "$i" -y -ac 1 "$i"
done