Skip to content

Instantly share code, notes, and snippets.

@nebjak
Created May 13, 2013 06:44
Show Gist options
  • Save nebjak/5566540 to your computer and use it in GitHub Desktop.
Save nebjak/5566540 to your computer and use it in GitHub Desktop.
Convert .wma audio files to .ogg to subdirectory *ogg*
for i in *.wma; do ffmpeg -i $i -codec:a libvorbis -qscale:a 5 ogg/${i%.wma}.ogg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment