diff options
author | Grissess <grissess@nexusg.org> | 2016-06-14 02:56:53 -0400 |
---|---|---|
committer | Grissess <grissess@nexusg.org> | 2016-06-14 02:56:53 -0400 |
commit | 2cb9c95ea18906258a4fc2df1fe229d191ae5e31 (patch) | |
tree | b042131c201687b7de1523586fa226ff64e00c69 /broadcast.py | |
parent | bb38c09530d7e66182c0db5205c15b143f3d5a9b (diff) |
Bugfixes
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 1fcf5a8..91b4e71 100644 --- a/broadcast.py +++ b/broadcast.py @@ -473,7 +473,7 @@ for fname in args: for note in nsq: ttime = float(note.get('time')) pitch = float(note.get('pitch')) + options.transpose - ampl = float(note.get('ampl', note.get('vel', 127.0) / 127.0)) + ampl = float(note.get('ampl', float(note.get('vel', 127.0)) / 127.0)) dur = factor*float(note.get('dur')) while time.time() - BASETIME < factor*ttime: self.wait_for(factor*ttime - (time.time() - BASETIME)) |