Skip to content

Commit 0bfb18b

Browse files
committed
[bin/flac2mp3] Add script that converts FLAC files to MP3
1 parent b5399a1 commit 0bfb18b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

bin/flac2mp3

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euxo pipefail
4+
5+
cd "$1"
6+
7+
fd -t f -e flac -x ffmpeg -i "{}" -qscale:a 0 "{.}.mp3"

0 commit comments

Comments
 (0)