aboutsummaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2019-11-16 02:50:16 -0500
committerGraham Northup <grissess@nexusg.org>2019-11-16 02:50:16 -0500
commit8504e47390723cc05b2171f87976bd8fae89dd64 (patch)
treeb6f230d67b58799240b5836956d6c08ccacd5872 /client.py
parent5b8b17790594117d74a80ead56f727aee3705fbf (diff)
Added bind addr, drums can use render
Diffstat (limited to 'client.py')
-rw-r--r--client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/client.py b/client.py
index c2d027e..8deb4b0 100644
--- a/client.py
+++ b/client.py
@@ -33,6 +33,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('-B', '--bind', dest='bind_addr', default='', help='Bind to this address')
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')
@@ -640,7 +641,7 @@ if options.test:
exit()
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
-sock.bind(('', PORT))
+sock.bind((options.bind_addr, PORT))
#signal.signal(signal.SIGALRM, sigalrm)