diff options
author | Grissess <grissess@nexusg.org> | 2015-08-20 23:06:11 -0400 |
---|---|---|
committer | Graham Northup <grissess@itl> | 2015-10-03 02:59:53 -0400 |
commit | bc04100457505823140dbfe1df5d22c22e1435b9 (patch) | |
tree | a36a2842d8d74c4d3a9610e381972b948513f487 /broadcast.py | |
parent | 6f86ab1f5e97a9844f04542f1dbea716a6f7ab9b (diff) |
Partial commit (sorry :( )
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/broadcast.py b/broadcast.py index 2903e7a..b494645 100644 --- a/broadcast.py +++ b/broadcast.py @@ -143,6 +143,8 @@ if options.live or options.list_live: ev = S.event_input(seq.client) event = None if ev: + if options.verbose: + print 'SEQ:', ev if ev < 0: seq._error(ev) if ev.type == S.SND_SEQ_EVENT_NOTEON: @@ -160,7 +162,7 @@ if options.live or options.list_live: continue if event is not None: if isinstance(event, midi.NoteOnEvent) and event.velocity == 0: - ev.__class__ = midi.NoteOffEvent + event.__class__ = midi.NoteOffEvent if options.verbose: print 'EVENT:', event if isinstance(event, midi.NoteOnEvent): |