This commit is contained in:
2025-06-23 20:38:07 +02:00
parent 741643fcf8
commit b9eee382e6
70 changed files with 11 additions and 0 deletions

11
GoetheVerlag/mp3/052/wav2mp3.sh Executable file
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