Created
March 4, 2015 08:39
-
-
Save fernandojsg/10669d061d7a3fa2f0b6 to your computer and use it in GitHub Desktop.
Convert wav to mp3 with ffmpeg
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
$ for f in *.wav; do ffmpeg -i $f "${f%.*}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment