Skip to content

Instantly share code, notes, and snippets.

@lucasweb78
Last active August 29, 2015 14:08
Show Gist options
  • Save lucasweb78/d68d72f1401b215c300a to your computer and use it in GitHub Desktop.
Save lucasweb78/d68d72f1401b215c300a to your computer and use it in GitHub Desktop.
Convert FLAC to MP3
#!/bin/bash
for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment