Added convert.sh

This commit is contained in:
lightmare 2023-02-07 20:43:13 +00:00 committed by Gitea
parent e45e4431d1
commit f62a3675aa

1
convert/convert.sh Normal file
View File

@ -0,0 +1 @@
for a in $(find "in/" -maxdepth 1 -not -name '.gitkeep' -type f); do ffmpeg -i "$a" -ar 22050 -ac 1 -c:a pcm_f32le "out/$(basename $a).wav"; done