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