Skip to content

Instantly share code, notes, and snippets.

@niedzielski
Created October 2, 2018 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niedzielski/6d8e594f103ba84b89eddebbca56026a to your computer and use it in GitHub Desktop.
Save niedzielski/6d8e594f103ba84b89eddebbca56026a to your computer and use it in GitHub Desktop.
Convert FLACs to MP3s.
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