mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-08 14:24:52 +07:00
13 lines
220 B
Bash
Executable File
13 lines
220 B
Bash
Executable File
#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 ../../
|