You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5d93efa09c | 15 years ago | |
---|---|---|
.. | ||
experimental | 15 years ago | |
midiout | 15 years ago | |
test | 15 years ago | |
DataTypeConverters.py | 15 years ago | |
DataTypeConverters.pyc | 15 years ago | |
EventDispatcher.py | 15 years ago | |
EventDispatcher.pyc | 15 years ago | |
MidiFileParser.py | 15 years ago | |
MidiFileParser.pyc | 15 years ago | |
MidiInFile.py | 15 years ago | |
MidiInFile.pyc | 15 years ago | |
MidiInStream.py | 15 years ago | |
MidiOutFile.py | 15 years ago | |
MidiOutStream.py | 15 years ago | |
MidiOutStream.pyc | 15 years ago | |
MidiToText.py | 15 years ago | |
MidiToText.pyc | 15 years ago | |
RawInstreamFile.py | 15 years ago | |
RawInstreamFile.pyc | 15 years ago | |
RawOutstreamFile.py | 15 years ago | |
__init__.py | 15 years ago | |
changes.txt | 15 years ago | |
constants.py | 15 years ago | |
constants.pyc | 15 years ago | |
example_mimimal_type0.py | 15 years ago | |
example_print_channel_0.py | 15 years ago | |
example_print_events.py | 15 years ago | |
example_print_file.py | 15 years ago | |
example_transpose_octave.py | 15 years ago | |
readme.txt | 15 years ago | |
version.txt | 15 years ago |
readme.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.