aboutsummaryrefslogtreecommitdiff
path: root/shiv.py
diff options
context:
space:
mode:
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: