Skip to content

Instantly share code, notes, and snippets.

@anvk
Last active May 26, 2016 19:25
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 anvk/e032cdcdbbb45dff2f9c0283718496eb to your computer and use it in GitHub Desktop.
Save anvk/e032cdcdbbb45dff2f9c0283718496eb to your computer and use it in GitHub Desktop.
Flac to MP3 converstion with FFMPEG
for a in *.flac; do
ffmpeg -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