Initial commit

This commit is contained in:
2025-06-29 16:10:14 +02:00
commit 05ef6387d2
1884 changed files with 104358 additions and 0 deletions

9
mp3cut/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