Trees | Indices | Help |
|
---|
|
1 from MidiToText import MidiToText 2 3 """ 4 This is an example that uses the MidiToText eventhandler. When an 5 event is triggered on it, it prints the event to the console. 6 """ 7 8 midi = MidiToText() 9 10 # non optional midi framework 11 midi.header() 12 midi.start_of_track() 13 14 15 # musical events 16 17 midi.update_time(0) 18 midi.note_on(channel=0, note=0x40) 19 20 midi.update_time(192) 21 midi.note_off(channel=0, note=0x40) 22 23 24 # non optional midi framework 25 midi.update_time(0) 26 midi.end_of_track() # not optional! 27 28 midi.eof() 29
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Dec 12 11:24:25 2012 | http://epydoc.sourceforge.net |