Skip to content

Instantly share code, notes, and snippets.

@chrism
Created August 18, 2015 19:43
Show Gist options
  • Save chrism/0ec270cbb5f133b99a63 to your computer and use it in GitHub Desktop.
Save chrism/0ec270cbb5f133b99a63 to your computer and use it in GitHub Desktop.
For converting wma into mp3 using ffmpeg
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