Skip to content

Instantly share code, notes, and snippets.

@kitallis
Last active December 20, 2015 22: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 kitallis/6205210 to your computer and use it in GitHub Desktop.
Save kitallis/6205210 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# brew install flac
# this gives you flac2mp3
# mkdir ~/scripts
# vim flac2mp34all
for f in *.flac; do
flac2mp3 "$f" v0 && rm "$f"
done
# export PATH=$PATH:~/scripts
# cd ~/album_in_flac
# flac2mp34all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment