Skip to content

Instantly share code, notes, and snippets.

@martgnz
Created December 20, 2017 20:27
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 martgnz/66d0031fb90649d3042062487463c7bd to your computer and use it in GitHub Desktop.
Save martgnz/66d0031fb90649d3042062487463c7bd to your computer and use it in GitHub Desktop.
Convert a folder of flac files to mp3 with ffmpeg
find . -name "*.flac" -exec ffmpeg -i {} -acodec libmp3lame -ab 320k {}.mp3 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment