Created
August 18, 2015 19:43
-
-
Save chrism/0ec270cbb5f133b99a63 to your computer and use it in GitHub Desktop.
For converting wma into mp3 using 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 *.wma; do ffmpeg -i "$f" -ab 128k "${f%.wma}.mp3" -ab 128K; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment