Skip to content

Instantly share code, notes, and snippets.

@k1000
Created August 18, 2014 13:29
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 k1000/394f2db060a0107b7614 to your computer and use it in GitHub Desktop.
Save k1000/394f2db060a0107b7614 to your computer and use it in GitHub Desktop.
mp4 to mp3
for f in *.m4a; do ffmpeg -i "$f" -acodec libmp3lame -ab 256k "${f%.m4a}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment