convert_sounds.sh is no longer needed
This commit is contained in:
@@ -1,12 +0,0 @@
|
|||||||
#convert from stereo to mono
|
|
||||||
cd assets/sounds/
|
|
||||||
for i in *.ogg; do
|
|
||||||
echo $i
|
|
||||||
ffmpeg -i "$i" -ac 1 "OUT_$i"
|
|
||||||
done
|
|
||||||
|
|
||||||
find . -type f ! -name "OUT_*" -delete
|
|
||||||
|
|
||||||
for file in OUT_*; do mv "$file" "${file#OUT_}"; done;
|
|
||||||
|
|
||||||
cd ../../
|
|
||||||
Reference in New Issue
Block a user