Class MIDIConverter
java.lang.Object
|
+----MIDIConverter
- public class MIDIConverter
- extends Object
MIDIConverter is a textbased application to convert standard MIDI-files
to ASCII MIDITXT-files and vice versa.
MIDITXT-files have a simple syntax and can easily be edited or written.
MIDIConverter can combine a couple of MIDITXT-files, Filter some MIDI-events,
and change the speed of a MIDI-file.
-
MIDIConverter()
-
-
main(String[])
-
-
openMIDI(String)
- Returns a MIDI-instance concerning to the file named in String.
-
printUsage()
- Prints usage of MIDIConverter to console.
-
saveMIDI(MIDI, String)
- Stores MIDI-instance to file named String.
-
winMain()
- Starts Windows Version of MIDIConverter.
MIDIConverter
public MIDIConverter()
openMIDI
static MIDI openMIDI(String s)
- Creates MIDI-instance concerning to file named s.
Returns null if no MIDI-object could be created by file.
saveMIDI
static void saveMIDI(MIDI m,
String s)
- Stores MIDI-instance as file called s.
Suffix tells weather file will be a standard MIDI-file or an ASCII MIDITXT-file.
winMain
static void winMain()
- Starts Windows Version of MIDIConverter.
printUsage
static void printUsage()
- Prints usage of MIDIConverter to console.
main
public static void main(String args[])