Skip to content

Instantly share code, notes, and snippets.

@vol4ok
Created February 14, 2013 11:01
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 vol4ok/4952077 to your computer and use it in GitHub Desktop.
Save vol4ok/4952077 to your computer and use it in GitHub Desktop.
extract mp3 audio from video files
for f in *.mp4
ffmpeg -i "$f" -ab 32k -ac 1 -acodec mp3 -vn "${f%.*}.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment