Fixed iOS audio issues

This commit is contained in:
Anuken
2019-08-14 13:10:29 -04:00
parent b68734d679
commit d56565990e
4 changed files with 36 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/bash
#convert ogg to .caf files for iOS
for i in $1/*.ogg; do
echo $i
ffmpeg -i "$i" "${i%.*}.caf"
done