This commit is contained in:
2025-06-25 05:25:41 +02:00
parent b9eee382e6
commit 68120cd7c3
31 changed files with 0 additions and 0 deletions

11
GoetheVerlag/mp3/054/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