Skip to content

Instantly share code, notes, and snippets.

@rozanecm
Created April 13, 2020 17:12
Show Gist options
  • Save rozanecm/89347ce21048e8460e39e12937d36b0c to your computer and use it in GitHub Desktop.
Save rozanecm/89347ce21048e8460e39e12937d36b0c to your computer and use it in GitHub Desktop.
Extract mp3 320k from mp4 video.
for i in *.mp4; do ffmpeg -i "$i" -b:a 320k -vn "${i%.*}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment