Skip to content

Instantly share code, notes, and snippets.

@noamtamim
Created May 15, 2019 20:11
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 noamtamim/e5cd026bed6793c62ed890400b11398e to your computer and use it in GitHub Desktop.
Save noamtamim/e5cd026bed6793c62ed890400b11398e to your computer and use it in GitHub Desktop.
Convert mp4 files to mp3 (extract audio from mp4)

Convert mp4 files to mp3 (extract audio from mp4)

Assuming a simple mp4 with one video stream and one audio stream.

for f in *.mp4
do 
  ffmpeg -i "$f" "${f%mp4}mp3"
done

One liner:

for f in *.mp4; do ffmpeg -i "$f" "${f%mp4}mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment