Displaying 1 result from an estimated 1 matches for "middifil".
Did you mean:
middifile
2003 May 13
0
convert midi directly to Vorbis (Unix users enjoy)
...@www.linux.org.uk
-------------- next part --------------
#/bin/bash
# midi2ogg
# by Lorenzo Prince
# Converts a midi file to Ogg Vorbis at the quality specified
# This script requires oggenc and TiMidity++ and will support all file
# formats that can be played by TiMidity++.
# Usage: midi2ogg <middifile> <Oggfile> <quality>
# example: midi2ogg test.mid test.ogg 3.5
if [ "$1" = "-v" -o "$1" = "--version" ]; then
echo midi2ogg version 1.0 by Lorenzo Prince
elif [ "$1" = "-h" -o "$1" = "--help" -o "...