Created
May 8, 2015 23:26
-
-
Save jgrevich/a9d20756253ac3938c6a to your computer and use it in GitHub Desktop.
Convert flac files to mp3 and move to subfolders
This file contains hidden or 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
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