Skip to content

Instantly share code, notes, and snippets.

@jgrevich
Created May 8, 2015 23:26
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 jgrevich/a9d20756253ac3938c6a to your computer and use it in GitHub Desktop.
Save jgrevich/a9d20756253ac3938c6a to your computer and use it in GitHub Desktop.
Convert flac files to mp3 and move to subfolders
for f in *.flac; do flac -cd "$f" | lame --preset extreme - "${f%.*}".mp3; done && mkdir mp3 flac; mv *.mp3 mp3; mv *.flac flac/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment