aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--broadcast.py28
-rw-r--r--mkiv.py37
2 files changed, 40 insertions, 25 deletions
diff --git a/broadcast.py b/broadcast.py
index 2a3e352..1e52f14 100644
--- a/broadcast.py
+++ b/broadcast.py
@@ -11,7 +11,8 @@ from packet import Packet, CMD, itos
parser = optparse.OptionParser()
parser.add_option('-t', '--test', dest='test', action='store_true', help='Play a test tone (440, 880) on all clients in sequence (the last overlaps with the first of the next)')
-parser.add_option('-T', '--sync-test', dest='sync_test', action='store_true', help='Don\'t wait for clients to play tones properly--have them all test tone at the same time')
+parser.add_option('-T', '--transpose', dest='transpose', type='int', help='Transpose by a set amount of semitones (positive or negative)')
+parser.add_option('--sync-test', dest='sync_test', action='store_true', help='Don\'t wait for clients to play tones properly--have them all test tone at the same time')
parser.add_option('-R', '--random', dest='random', type='float', help='Generate random notes at approximately this period')
parser.add_option('--rand-low', dest='rand_low', type='int', help='Low frequency to randomly sample')
parser.add_option('--rand-high', dest='rand_high', type='int', help='High frequency to randomly sample')
@@ -28,7 +29,7 @@ parser.add_option('-r', '--route', dest='routes', action='append', help='Add a r
parser.add_option('-v', '--verbose', dest='verbose', action='store_true', help='Be verbose; dump events and actual time (can slow down performance!)')
parser.add_option('-W', '--wait-time', dest='wait_time', type='float', help='How long to wait for clients to initially respond (delays all broadcasts)')
parser.add_option('--help-routes', dest='help_routes', action='store_true', help='Show help about routing directives')
-parser.set_defaults(routes=[], random=0.0, rand_low=80, rand_high=2000, live=None, factor=1.0, duration=1.0, volume=255, wait_time=0.25, play=[])
+parser.set_defaults(routes=[], random=0.0, rand_low=80, rand_high=2000, live=None, factor=1.0, duration=1.0, volume=255, wait_time=0.25, play=[], transpose=0)
options, args = parser.parse_args()
if options.help_routes:
@@ -319,16 +320,19 @@ for fname in args:
if t <= 0:
return
time.sleep(t)
- def run(self):
- nsq, cl = self._Thread__args
- for note in nsq:
- ttime = float(note.get('time'))
- pitch = int(note.get('pitch'))
- vel = int(note.get('vel'))
- dur = factor*float(note.get('dur'))
- while time.time() - BASETIME < factor*ttime:
- self.wait_for(factor*ttime - (time.time() - BASETIME))
- s.sendto(str(Packet(CMD.PLAY, int(dur), int((dur*1000000)%1000000), int(440.0 * 2**((pitch-69)/12.0)), vel*2)), cl)
+ def run(self):
+ nsq, cl = self._Thread__args
+ for note in nsq:
+ ttime = float(note.get('time'))
+ pitch = int(note.get('pitch')) + options.transpose
+ vel = int(note.get('vel'))
+ dur = factor*float(note.get('dur'))
+ while time.time() - BASETIME < factor*ttime:
+ self.wait_for(factor*ttime - (time.time() - BASETIME))
+ s.sendto(str(Packet(CMD.PLAY, int(dur), int((dur*1000000)%1000000), int(440.0 * 2**((pitch-69)/12.0)), vel*2)), cl)
+ if options.verbose:
+ print (time.time() - BASETIME), cl, ': PLAY', pitch, dur, vel
+ self.wait_for(dur - ((time.time() - BASETIME) - factor*ttime))
if options.verbose:
print (time.time() - BASETIME), cl, ': PLAY', pitch, dur, vel
self.wait_for(dur - ((time.time() - BASETIME) - factor*ttime))
diff --git a/mkiv.py b/mkiv.py
index 1cee6ed..2293861 100644
--- a/mkiv.py
+++ b/mkiv.py
@@ -29,7 +29,8 @@ parser.add_option('-t', '--track', dest='tracks', action='append', help='Reserve
parser.add_option('--help-conds', dest='help_conds', action='store_true', help='Print help on filter conditions for streams')
parser.add_option('-P', '--no-percussion', dest='no_perc', action='store_true', help='Don\'t try to filter percussion events out')
parser.add_option('-f', '--fuckit', dest='fuckit', action='store_true', help='Use the Python Error Steamroller when importing MIDIs (useful for extended formats)')
-parser.set_defaults(tracks=[])
+parser.add_option('-n', '--target-num', dest='repeaterNumber', type='int', help='Target count of devices')
+parser.set_defaults(tracks=[], repeaterNumber=1)
options, args = parser.parse_args()
if options.help_conds:
@@ -273,18 +274,28 @@ for fname in args:
ivstreams = ET.SubElement(iv, 'streams')
- for group in notegroups:
- for ns in group.streams:
- ivns = ET.SubElement(ivstreams, 'stream')
- ivns.set('type', 'ns')
- if group.name is not None:
- ivns.set('group', group.name)
- for note in ns.history:
- ivnote = ET.SubElement(ivns, 'note')
- ivnote.set('pitch', str(note.ev.pitch))
- ivnote.set('vel', str(note.ev.velocity))
- ivnote.set('time', str(note.abstime))
- ivnote.set('dur', str(note.duration))
+ x = 0
+ while(x<options.repeaterNumber):
+ for group in notegroups:
+ for ns in group.streams:
+ ivns = ET.SubElement(ivstreams, 'stream')
+ ivns.set('type', 'ns')
+ if group.name is not None:
+ ivns.set('group', group.name)
+ for note in ns.history:
+ ivnote = ET.SubElement(ivns, 'note')
+ ivnote.set('pitch', str(note.ev.pitch))
+ ivnote.set('vel', str(note.ev.velocity))
+ ivnote.set('time', str(note.abstime))
+ ivnote.set('dur', str(note.duration))
+ x+=1
+ print x
+ if(x>=options.repeaterNumber and options.repeaterNumber!=1):
+ break
+ if(x>=options.repeaterNumber and options.repeaterNumber!=1):
+ break
+ if(x>=options.repeaterNumber and options.repeaterNumber!=1):
+ break
ivaux = ET.SubElement(ivstreams, 'stream')
ivaux.set('type', 'aux')