Skip to content

Instantly share code, notes, and snippets.

@d-amend
Created July 3, 2015 09:52
Show Gist options
  • Save d-amend/fe9955fb9cefbc3a8c0b to your computer and use it in GitHub Desktop.
Save d-amend/fe9955fb9cefbc3a8c0b to your computer and use it in GitHub Desktop.
Batch-convert of files via ffmpeg
for f in *.m4a; do ffmpeg -i "$f" -b:a 256K -map a "${f%.m4a}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment