Skip to content

Instantly share code, notes, and snippets.

@flibitijibibo
Created April 14, 2019 23:24
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flibitijibibo/c97bc14aab04b1277d8ef5e97fc9aeff to your computer and use it in GitHub Desktop.
Save flibitijibibo/c97bc14aab04b1277d8ef5e97fc9aeff to your computer and use it in GitHub Desktop.
Convert WMA/WMV to Vorbis/Theora, useful for XNA Windows games
#!/bin/bash
set -e
find -name "*.wma" -exec bash -c 'ffmpeg -i "{}" -q:a 10 "${0/.wma}.ogg"' {} \;
find -name "*.wmv" -exec bash -c 'ffmpeg -i "{}" -q:v 10 -q:a 10 "${0/.wmv}.ogv"' {} \;
@rfht
Copy link

rfht commented Jun 1, 2019

PPS: credit to Bryan Steele from OpenBSD and our OpenBSD gaming group who came up with the gst-launch syntax. The subshell acrobatics are mine...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment