aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2019-03-26 22:00:21 -0400
committerGraham Northup <grissess@nexusg.org>2019-03-26 22:00:21 -0400
commitcf0b170b2cee2635905a087ea7ea9852512b5e98 (patch)
tree56a1054b18fdf2de504b7ee6227fddff35f0564a
parentad94226b85044075fb8a6736438457da0a8b4f28 (diff)
Added playtime display, amplitude exponents
-rw-r--r--broadcast.py5
-rw-r--r--client.py3
-rw-r--r--drums.py3
3 files changed, 9 insertions, 2 deletions
diff --git a/broadcast.py b/broadcast.py
index c4753da..7b9eb19 100644
--- a/broadcast.py
+++ b/broadcast.py
@@ -768,6 +768,11 @@ for fname in args:
sys.stdout.write('\x1b[G\x1b[K[%s]' % (
('#' * int((play_time() - BASETIME) * (columns - 2) / (ENDTIME * factor)) + SPINNERS[spin_phase]).ljust(columns - 2),
))
+ fmtime = '% 8.3f' % ((play_time() - BASETIME) / factor,)
+ sys.stdout.write('\x1b[%dG%s' % (
+ 2 if play_time() - BASETIME > factor * ENDTIME / 2 else columns - len(fmtime) - 1,
+ fmtime,
+ ))
sys.stdout.flush()
spin_phase += 1
if spin_phase >= len(SPINNERS):
diff --git a/client.py b/client.py
index a3d32f8..b7afa14 100644
--- a/client.py
+++ b/client.py
@@ -30,6 +30,7 @@ parser.add_option('-N', '--numpy', dest='numpy', action='store_true', help='Use
parser.add_option('-G', '--gui', dest='gui', default='', help='set a GUI to use')
parser.add_option('-c', '--clamp', dest='clamp', action='store_true', help='Clamp over-the-wire amplitudes to 0.0-1.0')
parser.add_option('-C', '--chorus', dest='chorus', default=0.0, type='float', help='Apply uniform random offsets (in MIDI pitch space)')
+parser.add_option('--amp-exp', dest='amp_exp', default=2.0, type='float', help='Raise floating amplitude to this power before computing raw amplitude')
parser.add_option('--vibrato', dest='vibrato', default=0.0, type='float', help='Apply periodic perturbances in pitch space by this amplitude (in MIDI pitches)')
parser.add_option('--vibrato-freq', dest='vibrato_freq', default=6.0, type='float', help='Frequency of the vibrato perturbances in Hz')
parser.add_option('--fmul', dest='fmul', default=1.0, type='float', help='Multiply requested frequencies by this amount')
@@ -639,7 +640,7 @@ while True:
amp = pkt.as_float(3)
if options.clamp:
amp = max(min(amp, 1.0), 0.0)
- AMPS[voice] = MAX * amp
+ AMPS[voice] = MAX * amp**options.amp_exp
EXPIRATIONS[voice] = time.time() + dur
if not (pkt.data[5] & PLF.SAMEPHASE):
CUR_PERIODS[voice] = 0.0
diff --git a/drums.py b/drums.py
index 5950bd3..1fa0653 100644
--- a/drums.py
+++ b/drums.py
@@ -18,6 +18,7 @@ parser.add_option('-r', '--rate', dest='rate', type='int', default=44100, help='
parser.add_option('-u', '--uid', dest='uid', default='', help='User identifier of this client')
parser.add_option('-p', '--port', dest='port', default=13677, type='int', help='UDP port to listen on')
parser.add_option('-c', '--clamp', dest='clamp', action='store_true', help='Clamp over-the-wire amplitudes to 0.0-1.0')
+parser.add_option('--amp-exp', dest='amp_exp', default=2.0, type='float', help='Raise floating amplitude to this power before computing raw amplitude')
parser.add_option('--repeat', dest='repeat', action='store_true', help='If a note plays longer than a sample length, keep playing the sample')
parser.add_option('--cut', dest='cut', action='store_true', help='If a note ends within a sample, stop playing that sample immediately')
parser.add_option('-n', '--max-voices', dest='max_voices', default=-1, type='int', help='Only support this many notes playing simultaneously (earlier ones get dropped)')
@@ -188,7 +189,7 @@ while True:
amp = options.volume * pkt.as_float(3)
if options.clamp:
amp = max(min(amp, 1.0), 0.0)
- PLAYING.append(SampleReader(rdata, dframes * 4, amp))
+ PLAYING.append(SampleReader(rdata, dframes * 4, amp**options.amp_exp))
if options.max_voices >= 0:
while len(PLAYING) > options.max_voices:
PLAYING.pop(0)