MaxMSP to Python via OSC ...
Hi everybody.
We're trying to communicate between Max5 and Python using OSC. we are noobies
On one side, receiving data from python via udpreceive...CNMAT works great.
But when we try to send data from max, python just answers :
"can't assign requested address. Error 10049"
We try to use udpsend, through OpenSoundControl or not. But always the same reply from python.
Is there a special syntax we need to use BEFORE sending data to python ? I thought the Opensoundcontrol object was meant to "translate" max data to osc...
anyhelp would be appreciated ... thanks in advance
Hello,
First of all, what OSC library are you using in Python ?
Are you using different ports to send and receive ? (You need to use different ports)
Are you sending to the good address from Max ? (ie if it's your local machine : udpsend 127.0.0.1 3333
Nat
thanks nat, we solved it today. The problem was stupid : not listening to the right port
Sometimes the obvious is the last tHing you think about.
@Nat...
Sorry for a python question in a max forum but you seem to be familiar with the protocol! I'm having some problems getting a data stream from python into max via OSC. I am pretty unfamiliar with python but have managed to get the live data I want streaming into the terminal window. I now want to use OSC to get this into Max. I'm fine with the max side of things but the python side has me stumped. It seems that first of all I need to install the pyOSC library but when I try to do so in terminal I just get the command not recognised message.
Any advice greatly appreciated!
bump