aboutsummaryrefslogtreecommitdiff
path: root/mkiv.py
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2018-09-05 23:54:52 -0400
committerGrissess <grissess@nexusg.org>2018-09-05 23:54:52 -0400
commit44e1966aee28210facd2435a2289295eab157900 (patch)
tree9c278ad2c439a84ba7b4e70b7b2bbe64da16335c /mkiv.py
parent5b9c97505fa359907d35d2dfed9fa49df27edf6d (diff)
Fixed drums, mkiv
mkiv now drops empty streams, avoiding a crasher in broadcast. drums now starts on the alternate port scanned by the broadcaster so as to not conflict with client.py.
Diffstat (limited to 'mkiv.py')
-rw-r--r--mkiv.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/mkiv.py b/mkiv.py
index 0c87372..b2384b1 100644
--- a/mkiv.py
+++ b/mkiv.py
@@ -651,6 +651,18 @@ for fname in args:
i += 1
print '...culled', ev_cnt, 'events'
+ print 'Culling empty streams...'
+ st_cnt = 0
+ for group in notegroups:
+ torem = set()
+ for ns in group.streams:
+ if not ns.history:
+ torem.add(ns)
+ st_cnt += len(torem)
+ for rem in torem:
+ group.streams.remove(rem)
+ print '...culled', st_cnt, 'empty streams'
+
if options.verbose:
print 'Final group mappings:'
for group in notegroups: