aboutsummaryrefslogtreecommitdiff
path: root/shiv.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2018-03-12 17:59:25 -0400
committerGraham Northup <grissess@nexusg.org>2018-03-12 17:59:25 -0400
commit7654ad67b46bb7e072cbe4a1f3dfb9c115bfeded (patch)
treebc8215b9d00e650574802b2f4c9c0705f5e55bf2 /shiv.py
parent4135f3a6f2b763fa6c952e2fd580b30b9e31d548 (diff)
Slack time, 24-bit color client terminal printing, and default T:perc routing
Diffstat (limited to 'shiv.py')
-rw-r--r--shiv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shiv.py b/shiv.py
index fe82006..e8cc37d 100644
--- a/shiv.py
+++ b/shiv.py
@@ -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: