mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-12 08:48:09 +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
|