Zählprogramm etc

This commit is contained in:
Sven Riwoldt
2025-04-21 07:56:45 +02:00
parent 38d0550626
commit 14eecf2c70
9 changed files with 1008 additions and 2 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