mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-03 04:44:24 +07:00
7 lines
119 B
Bash
7 lines
119 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
#convert ogg to .caf files for iOS
|
||
|
for i in $1/*.ogg; do
|
||
|
echo $i
|
||
|
ffmpeg -i "$i" "${i%.*}.caf"
|
||
|
done
|