Created
September 2, 2017 03:10
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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