aboutsummaryrefslogtreecommitdiff
path: root/shiv.py
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2016-06-10 00:24:07 -0400
committerGrissess <grissess@nexusg.org>2016-06-10 00:24:07 -0400
commit0fc951601706982aeedf035dc4c5ae1c40c671cb (patch)
tree1c31d5c7d6237627c844945a83536c9950e15ff8 /shiv.py
parent5b1881000baec07d5102e360ef4bf232e93bb158 (diff)
Pitch bend support
Diffstat (limited to 'shiv.py')
-rw-r--r--shiv.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/shiv.py b/shiv.py
index 0a8169e..ac6e2b1 100644
--- a/shiv.py
+++ b/shiv.py
@@ -3,6 +3,7 @@
import xml.etree.ElementTree as ET
import optparse
import sys
+import math
parser = optparse.OptionParser()
parser.add_option('-n', '--number', dest='number', action='store_true', help='Show number of tracks')
@@ -69,7 +70,7 @@ def show_hist(values, height=None):
xs, ys = values.keys(), values.values()
minx, maxx = min(xs), max(xs)
miny, maxy = min(ys), max(ys)
- xv = range(minx, maxx + 1)
+ xv = range(int(math.floor(minx)), int(math.ceil(maxx + 1)))
incs = max((maxy - miny) / height, 1)
print COL.CYAN + '\t --' + '-' * len(xv) + COL.NONE
for ub in range(maxy + incs, miny, -incs):
@@ -173,7 +174,7 @@ for fname in args:
for sidx, stream in enumerate(notestreams):
notes = stream.findall('note')
for note in notes:
- pitch = int(note.get('pitch'))
+ pitch = float(note.get('pitch'))
vel = int(note.get('vel'))
time = float(note.get('time'))
dur = float(note.get('dur'))