Initial commit

This commit is contained in:
2025-06-29 15:55:23 +02:00
commit be7f86008d
2825 changed files with 3049 additions and 0 deletions

BIN
mp3/073/073.wav Normal file

Binary file not shown.

Binary file not shown.

11
mp3/073/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