Viele neue mp3s

This commit is contained in:
2025-06-22 19:34:06 +02:00
parent 9e6e3636d7
commit 741643fcf8
963 changed files with 734 additions and 1283 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
input_file=$1
output_file="${input_file%.wav}.mp3"
echo $input_file
echo $output_file
ffmpeg -i $input_file -codec:a libmp3lame -qscale:a 2 $output_file
rm -f $input_file