Skip to content

Instantly share code, notes, and snippets.

@zeekay
Created February 11, 2015 05:40
Show Gist options
  • Save zeekay/b8a44c5978eb3f16809f to your computer and use it in GitHub Desktop.
Save zeekay/b8a44c5978eb3f16809f to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
for orig in "$@"
do
flac --decode --stdout "$orig" | lame -b 320 - "${orig%.flac}.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment