mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-11 18:39:16 +07:00
Fixed truncated sounds
This commit is contained in:
parent
6fa0ac56ac
commit
7f2a1374e4
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
core/assets/sounds/break.ogg
Executable file → Normal file
BIN
core/assets/sounds/break.ogg
Executable file → Normal file
Binary file not shown.
Binary file not shown.
BIN
core/assets/sounds/buttonClick.ogg
Executable file → Normal file
BIN
core/assets/sounds/buttonClick.ogg
Executable file → Normal file
Binary file not shown.
BIN
core/assets/sounds/click.ogg
Executable file → Normal file
BIN
core/assets/sounds/click.ogg
Executable file → Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
core/assets/sounds/door.ogg
Executable file → Normal file
BIN
core/assets/sounds/door.ogg
Executable file → Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
core/assets/sounds/machine.ogg
Executable file → Normal file
BIN
core/assets/sounds/machine.ogg
Executable file → Normal file
Binary file not shown.
BIN
core/assets/sounds/message.ogg
Executable file → Normal file
BIN
core/assets/sounds/message.ogg
Executable file → Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
core/assets/sounds/thruster.ogg
Executable file → Normal file
BIN
core/assets/sounds/thruster.ogg
Executable file → Normal file
Binary file not shown.
BIN
core/assets/sounds/unlock.ogg
Executable file → Normal file
BIN
core/assets/sounds/unlock.ogg
Executable file → Normal file
Binary file not shown.
Binary file not shown.
BIN
core/assets/sounds/windowHide.ogg
Executable file → Normal file
BIN
core/assets/sounds/windowHide.ogg
Executable file → Normal file
Binary file not shown.
@ -1,5 +1,12 @@
|
|||||||
#convert from stereo to mono
|
#convert from stereo to mono
|
||||||
for i in assets/sounds/*.ogg; do
|
cd assets/sounds/
|
||||||
|
for i in *.ogg; do
|
||||||
echo $i
|
echo $i
|
||||||
ffmpeg -i "$i" -y -ac 1 "$i"
|
ffmpeg -i "$i" -ac 1 "OUT_$i"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
find . -type f ! -name "OUT_*" -delete
|
||||||
|
|
||||||
|
for file in OUT_*; do mv "$file" "${file#OUT_}"; done;
|
||||||
|
|
||||||
|
cd ../../
|
||||||
|
Loading…
Reference in New Issue
Block a user