Skip to content

Instantly share code, notes, and snippets.

@agusmakmun
Created September 2, 2017 03:10
Show Gist options
  • Save agusmakmun/407062f87c1ac813c35ba8c7b46c5f94 to your computer and use it in GitHub Desktop.
Save agusmakmun/407062f87c1ac813c35ba8c7b46c5f94 to your computer and use it in GitHub Desktop.
Convert all mp4 files into mp3 files, thank: https://stackoverflow.com/a/38485017/6396981
$ mkdir outputs/
$ for f in *.mp4; do ffmpeg -i "$f" "outputs/${f%.mp4}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment