This commit is contained in:
Anuken
2019-08-15 13:33:23 -04:00
parent 89ee04c942
commit 6fa0ac56ac
5 changed files with 5 additions and 2 deletions

5
core/convert_sounds.sh Executable file
View File

@@ -0,0 +1,5 @@
#convert from stereo to mono
for i in assets/sounds/*.ogg; do
echo $i
ffmpeg -i "$i" -y -ac 1 "$i"
done