Initial commit

This commit is contained in:
2025-06-29 15:55:23 +02:00
commit be7f86008d
2825 changed files with 3049 additions and 0 deletions

9
mp3/045/convert.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
for i in $(ls *.wav)
do
python3 convert.py $i
echo $i
rm -f $i
done