diff options
author | Grissess <grissess@nexusg.org> | 2016-06-10 00:24:07 -0400 |
---|---|---|
committer | Grissess <grissess@nexusg.org> | 2016-06-10 00:24:07 -0400 |
commit | 0fc951601706982aeedf035dc4c5ae1c40c671cb (patch) | |
tree | 1c31d5c7d6237627c844945a83536c9950e15ff8 /broadcast.py | |
parent | 5b1881000baec07d5102e360ef4bf232e93bb158 (diff) |
Pitch bend support
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/broadcast.py b/broadcast.py index 2a7ce3c..714533d 100644 --- a/broadcast.py +++ b/broadcast.py @@ -464,7 +464,7 @@ for fname in args: nsq, cl = self._Thread__args for note in nsq: ttime = float(note.get('time')) - pitch = int(note.get('pitch')) + options.transpose + pitch = float(note.get('pitch')) + options.transpose vel = int(note.get('vel')) dur = factor*float(note.get('dur')) while time.time() - BASETIME < factor*ttime: |