diff --git a/flac2mp3 b/flac2mp3 new file mode 100755 index 0000000..b6f9a17 --- /dev/null +++ b/flac2mp3 @@ -0,0 +1,4 @@ +#!/bin/bash + +parallel-moreutils -i -j$(nproc) ffmpeg -i {} -qscale:a 0 {}.mp3 -- ./*.flac +rename .flac.mp3 .mp3 ./*.mp3 \ No newline at end of file