mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-11-11 03:31:19 +03:00
6 lines
108 B
Bash
6 lines
108 B
Bash
|
#convert from stereo to mono
|
||
|
for i in assets/sounds/*.ogg; do
|
||
|
echo $i
|
||
|
ffmpeg -i "$i" -y -ac 1 "$i"
|
||
|
done
|