diff options
author | Grissess <grissess@nexusg.org> | 2015-12-19 12:27:27 -0500 |
---|---|---|
committer | Grissess <grissess@nexusg.org> | 2015-12-19 12:27:27 -0500 |
commit | ac8c88f49e196fe98b0230bb0cb8a8fbbd53380c (patch) | |
tree | 07391c90c6fdc6b595a355a55b26ac77cf099948 | |
parent | 960d044246ca0d2b255b3b81632b0380c14b632f (diff) | |
parent | 7c9661d892f6145d123d91924b720d9d87b69502 (diff) |
Merge branch 'beta' of https://github.com/Grissess/itl_chorus into beta
-rw-r--r-- | broadcast.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/broadcast.py b/broadcast.py index 82f0e21..3b163b1 100644 --- a/broadcast.py +++ b/broadcast.py @@ -320,6 +320,7 @@ for fname in args: for route in routeset.routes: print route +<<<<<<< HEAD class NSThread(threading.Thread): def drop_missed(self): nsq, cl = self._Thread__args @@ -330,6 +331,9 @@ class NSThread(threading.Thread): if options.verbose: print self, 'dropped', cnt, 'notes due to miss' self._Thread__args = (nsq, cl) +======= + class NSThread(threading.Thread): +>>>>>>> 7c9661d892f6145d123d91924b720d9d87b69502 def wait_for(self, t): if t <= 0: return @@ -361,6 +365,7 @@ class NSThread(threading.Thread): print 'Playback threads:' for thr in threads: print thr._Thread__args[1] +<<<<<<< HEAD BASETIME = time.time() - (options.seek*factor) if options.seek > 0: @@ -370,4 +375,13 @@ class NSThread(threading.Thread): thr.start() for thr in threads: thr.join() +======= + + BASETIME = time.time() + for thr in threads: + thr.start() + for thr in threads: + thr.join() + +>>>>>>> 7c9661d892f6145d123d91924b720d9d87b69502 print fname, ': Done!' |