aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2016-06-10 01:16:16 -0400
committerGrissess <grissess@nexusg.org>2016-06-10 01:16:16 -0400
commit154526e1a56ec78b745a8b76bb8949cf6cb9d298 (patch)
tree35dbedf63e7c603fd50f3db43d95ec47f26e9310
parent0fc951601706982aeedf035dc4c5ae1c40c671cb (diff)
Fixed annoying tempo bug
-rw-r--r--.gitignore1
-rw-r--r--mkiv.py33
2 files changed, 19 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore
index ee6e3f3..7df3784 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,5 @@ client
*.swp
*.swo
*.pyc
+*.mid
*~
diff --git a/mkiv.py b/mkiv.py
index dd63130..a55f755 100644
--- a/mkiv.py
+++ b/mkiv.py
@@ -154,7 +154,7 @@ for fname in args:
sorted_events.append(SortEvent(ev, tidx, absticks))
sorted_events.sort(key=lambda x: x.abstick)
- bpm_at = {0: 120}
+ bpm_at = [{0: 120} for i in pat]
print 'Computing tempos...'
@@ -162,16 +162,18 @@ for fname in args:
if isinstance(sev.ev, midi.SetTempoEvent):
if options.debug:
print fname, ': SetTempo at', sev.abstick, 'to', sev.ev.bpm, ':', sev.ev
- bpm_at[sev.abstick] = sev.ev.bpm
+ bpm_at[sev.tidx][sev.abstick] = sev.ev.bpm
if options.verbose:
print fname, ': Events:', len(sorted_events)
print fname, ': Resolved global BPM:', bpm_at
if options.debug:
- btimes = bpm_at.keys()
- for i in range(len(btimes) - 1):
- fev = filter(lambda sev: sev.abstick >= btimes[i] and sev.abstick < btimes[i+1], sorted_events)
- print fname, ': BPM partition', i, 'contains', len(fev), 'events'
+ for tidx, bpms in enumerate(bpm_at):
+ print fname, ': Tempos in track', tidx
+ btimes = bpms.keys()
+ for i in range(len(btimes) - 1):
+ fev = filter(lambda sev: sev.tidx == tidx and sev.abstick >= btimes[i] and sev.abstick < btimes[i+1], sorted_events)
+ print fname, ': BPM partition', i, 'contains', len(fev), 'events'
class MergeEvent(object):
__slots__ = ['ev', 'tidx', 'abstime', 'bank', 'prog']
@@ -201,7 +203,7 @@ for fname in args:
abstime = 0
absticks = 0
for ev in track:
- bpm = filter(lambda pair: pair[0] <= absticks, sorted(bpm_at.items(), key=lambda pair: pair[0]))[-1][1]
+ bpm = filter(lambda pair: pair[0] <= absticks, sorted(bpm_at[tidx].items(), key=lambda pair: pair[0]))[-1][1]
if options.debug:
print ev, ': bpm=', bpm
absticks += ev.tick
@@ -389,17 +391,18 @@ for fname in args:
##### Write to XML and exit #####
ivmeta = ET.SubElement(iv, 'meta')
- ivbpms = ET.SubElement(ivmeta, 'bpms')
abstime = 0
prevticks = 0
prev_bpm = 120
- for absticks, bpm in sorted(bpm_at.items(), key = lambda pair: pair[0]):
- abstime += ((absticks - prevticks) * 60.0) / (prev_bpm * pat.resolution)
- prevticks = absticks
- ivbpm = ET.SubElement(ivbpms, 'bpm')
- ivbpm.set('bpm', str(bpm))
- ivbpm.set('ticks', str(absticks))
- ivbpm.set('time', str(abstime))
+ for tidx, bpms in enumerate(bpm_at):
+ ivbpms = ET.SubElement(ivmeta, 'bpms', track=str(tidx))
+ for absticks, bpm in sorted(bpms.items(), key = lambda pair: pair[0]):
+ abstime += ((absticks - prevticks) * 60.0) / (prev_bpm * pat.resolution)
+ prevticks = absticks
+ ivbpm = ET.SubElement(ivbpms, 'bpm')
+ ivbpm.set('bpm', str(bpm))
+ ivbpm.set('ticks', str(absticks))
+ ivbpm.set('time', str(abstime))
ivstreams = ET.SubElement(iv, 'streams')