Skip to content

Instantly share code, notes, and snippets.

@nebjak
Created May 13, 2013 06:45
Show Gist options
  • Save nebjak/5566548 to your computer and use it in GitHub Desktop.
Save nebjak/5566548 to your computer and use it in GitHub Desktop.
Convert .wma audio files to .mp3 to subdirectory *mp3*
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