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.

Constructor Index

 o MIDIConverter()

Method Index

 o main(String[])
 o openMIDI(String)
Returns a MIDI-instance concerning to the file named in String.
 o printUsage()
Prints usage of MIDIConverter to console.
 o saveMIDI(MIDI, String)
Stores MIDI-instance to file named String.
 o winMain()
Starts Windows Version of MIDIConverter.

Constructors

 o MIDIConverter
 public MIDIConverter()

Methods

 o 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.

 o 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.

 o winMain
 static void winMain()
Starts Windows Version of MIDIConverter.

 o printUsage
 static void printUsage()
Prints usage of MIDIConverter to console.

 o main
 public static void main(String args[])