Created
October 2, 2018 01:29
-
-
Save niedzielski/6d8e594f103ba84b89eddebbca56026a to your computer and use it in GitHub Desktop.
Convert FLACs to MP3s.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -type f -iname \*.flac| | |
while IFS= read -r file; do | |
ffmpeg -v 24 -nostdin -i "$file" -ab 320k "${file%.flac}.mp3" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment