Skip to content

Instantly share code, notes, and snippets.

@chris-rock
Created April 20, 2014 15:13
Show Gist options
  • Save chris-rock/11116560 to your computer and use it in GitHub Desktop.
Save chris-rock/11116560 to your computer and use it in GitHub Desktop.
Convert mp4 to mp3
for i in *.mp4; do ffmpeg -i $i -q:a 0 -map a mp3/$i.mp3; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment