diff options
author | Graham Northup <grissess@nexusg.org> | 2018-03-12 17:59:25 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2018-03-12 17:59:25 -0400 |
commit | 7654ad67b46bb7e072cbe4a1f3dfb9c115bfeded (patch) | |
tree | bc8215b9d00e650574802b2f4c9c0705f5e55bf2 /shiv.py | |
parent | 4135f3a6f2b763fa6c952e2fd580b30b9e31d548 (diff) |
Slack time, 24-bit color client terminal printing, and default T:perc routing
Diffstat (limited to 'shiv.py')
-rw-r--r-- | shiv.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -219,7 +219,7 @@ for fname in args: notes = stream.findall('note') for note in notes: pitch = float(note.get('pitch')) - ampl = float(note.get('ampl', float(note.get('vel', 127.0)) / 127.0)) + ampl = int(127 * float(note.get('ampl', float(note.get('vel', 127.0)) / 127.0))) time = float(note.get('time')) dur = float(note.get('dur')) if options.notes: |