Skip to content

Instantly share code, notes, and snippets.

@np1
Forked from ksu006/flac-to-mp3.sh
Created December 18, 2013 19:43
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 np1/8028557 to your computer and use it in GitHub Desktop.
Save np1/8028557 to your computer and use it in GitHub Desktop.
#!/bin/sh
for file in *.flac; do flac -cd "$file" | lame -h -b 320 - "${file%.flac}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment