Skip to content

Instantly share code, notes, and snippets.

@piffy
Created December 8, 2015 08:37
Show Gist options
  • Save piffy/a389ab7f8edf3ca9ff90 to your computer and use it in GitHub Desktop.
Save piffy/a389ab7f8edf3ca9ff90 to your computer and use it in GitHub Desktop.
Convert flac to mp3 (ubuntu)
#!/bin/bash
for a in *.flac; do
avconv -i "$a" -qscale:a 0 "${a[@]/%flac/mp3}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment