Skip to content

Instantly share code, notes, and snippets.

@mjac
Created March 30, 2020 21:51
Show Gist options
  • Save mjac/a93cca38b0b6c9f64446866554e59f69 to your computer and use it in GitHub Desktop.
Save mjac/a93cca38b0b6c9f64446866554e59f69 to your computer and use it in GitHub Desktop.
Convert all FLAC to MP3
for f in **/*.flac; do ffmpeg -i "$f" -aq 3 "${f%flac}mp3";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment