Skip to content

Instantly share code, notes, and snippets.

@zalun
Last active October 24, 2016 08:26
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 zalun/48767e68ce0cbe5a2a9be00abfb9cf38 to your computer and use it in GitHub Desktop.
Save zalun/48767e68ce0cbe5a2a9be00abfb9cf38 to your computer and use it in GitHub Desktop.
FLAC to MP3
#!/bin/bash
for a in ./*.flac; do ffmpeg -i "$a" -qscale:a 0 "$a.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment