| .. | ||
| experimental | ||
| midiout | ||
| test | ||
| __init__.py | ||
| changes.txt | ||
| constants.py | ||
| constants.pyc | ||
| DataTypeConverters.py | ||
| DataTypeConverters.pyc | ||
| EventDispatcher.py | ||
| EventDispatcher.pyc | ||
| example_mimimal_type0.py | ||
| example_print_channel_0.py | ||
| example_print_events.py | ||
| example_print_file.py | ||
| example_transpose_octave.py | ||
| MidiFileParser.py | ||
| MidiFileParser.pyc | ||
| MidiInFile.py | ||
| MidiInFile.pyc | ||
| MidiInStream.py | ||
| MidiOutFile.py | ||
| MidiOutStream.py | ||
| MidiOutStream.pyc | ||
| MidiToText.py | ||
| MidiToText.pyc | ||
| RawInstreamFile.py | ||
| RawInstreamFile.pyc | ||
| RawOutstreamFile.py | ||
| readme.txt | ||
| version.txt | ||
This is the documentation for the midi package ============================================== The modules follows the following naming convention: MidiIn<StreamType>.py --------------------- The MidiIn modules reads midi content for a specific type of stream. Ie. a file or a midi port. It then generates events and triggers them on a MidiOutStream. MidiOut<StreamType>.py ---------------------- The MidiOut modules are event handlers, that reacts to events generated by a a Midi in module. MidiInBase.py --------------- The base class for input streams. MidiOutBase.py ---------------- The base class for the output streams. Internal modules ================ DataTypeConverters.py --------------------- A collection of functions that converts the special data types used in midi files to and from strings. constants.py ------------ A collection of constants from the midi spec.