Convert WMA/WMV to Vorbis/Theora, useful for XNA Windows games
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
#!/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"' {} \; |
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
The following is an alternative implementation for the video part using gstreamer for potential use on platforms without ffmpeg, or where ffmpeg exists without compiled-in support for Theora/VP3. Because of the gst-launch syntax, it is a little more involved. The resulting script runs on OpenBSD's ksh and may even be completely Bourne shell compatible (unlike the above
${0/.wmv}
which is a bashism).Tested with the .wmv files of Cthulhu Saves the World and Cloudberry Kingdom.
PS: I tried adding a progressreport, but that lead to file conversions never finishing, so no progress report in this version...