Created
May 13, 2013 06:45
-
-
Save nebjak/5566548 to your computer and use it in GitHub Desktop.
Convert .wma audio files to .mp3 to subdirectory *mp3*
This file contains 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 i in *.wma; do ffmpeg -i $i mp3/${i%.wma}.mp3; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment