Hi kurt,
thanks for that, but if I were to go down the route of using communication protocols I would probably try to use tcp/ip (or udp?) as I think(?) it is in some way built into pd in order to communicate with the gui (not at all sure about this)- but I would presume this involves effectively writing a stand alone version of netsend/ receive. Have copied to list, as always, I am confused but interested. thanks again
Mandy
On Wed, 6 Nov 2002 14:40:03 +0100 kurt stockman kurt.stockman@pandora.be wrote:
hi mandy,
I'm not a programmer but as i understand it OSC is 'simply' a network protocol so if you can code C++ you should be able to write an application that can communicate with other applications/devices using OSC.
osc homepage >> http://cnmat.cnmat.berkeley.edu/OSC/
with OSC I can make my pd patches communicate with a variety of other computers/applications/people while performing. I've used it to 'talk' with flash, eyesweb and Max....
hopes this helps
kurt
-----Oorspronkelijk bericht----- Van: M.Kazem@bristol.ac.uk [mailto:M.Kazem@bristol.ac.uk] Verzonden: woensdag 6 november 2002 14:28 Aan: kurt stockman Onderwerp: RE: [PD] Netsend Jitter Elimination
Kurt
can osc allow you to send data from a C++ application to a pd application? (only just heard of osc) thanks Mandy
On Wed, 6 Nov 2002 12:29:32 +0100 kurt stockman kurt.stockman@pandora.be wrote:
have you tried OSC?
kurt
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
but I would presume this involves effectively writing a stand alone version of netsend/ receive.
There are stand alone netsend and netreceive programs in the source folder, and they are quite easy to implement into another context. I have adopted the code from u_pdsend.c to create a connection between vr++ (http://www.cs.auc.dk/3DVDM/software.html) and Pure Data (running a 3D sound engine). If you need help with netsend/receive just drop me (or the list) a note.
Cheers Soeren
On Wed, 6 Nov 2002, Søren Bovbjerg wrote:
There are stand alone netsend and netreceive programs in the source folder, and they are quite easy to implement into another context. I have adopted the code from u_pdsend.c to create a connection between vr++ (http://www.cs.auc.dk/3DVDM/software.html) and Pure Data (running a 3D sound engine).
I'd love to find out more about your 3D sound engine for PD. Is the source code available? I looked on your site and couldn't find any reference to the PD stuff.
I am starting work on a PD cluster with the idea of using many computers to generate a 3D array of speakers with the advantage of spreading out processing as well.
.hc
zen
\
\
\[D[D[D[D
I'd love to find out more about your 3D sound engine for PD. Is the source code available?
No, nothing has been made public yet. I have cooked up a few externals to deal with 4, 5.1 and 8 speaker arrays (8 in a cube). They also deal with distance calculation and "camera" rotation around the 3 axis using OpenGL terminology. Then there is as c++ stub that eventually has to be included into vr++. It takes care of net connection, voice allocation/management, formatting net messages for PD and other stuff that will limit the stress on PD.
I am starting work on a PD cluster with the idea of using many computers to generate a 3D array of speakers with the advantage of spreading out processing as well.
In my situation the sound server will run on a single machine in either a single/multiprocessor or cluster environment. I have made no attempts to split the sound process out on more machines. I fear that the precision I requre will not be possible.
If you are looking for at multi processor / multi threading programming framework vr++ may be of interest. It can be used for other things than VR aswell :-) (You should contact Henrik R. Nagel - his address is on the web page somewhere).
Cheers Soeren
On Thu, 7 Nov 2002, Søren Bovbjerg wrote:
I'd love to find out more about your 3D sound engine for PD. Is the source code available?
No, nothing has been made public yet. I have cooked up a few externals to deal with 4, 5.1 and 8 speaker arrays (8 in a cube). They also deal with distance calculation and "camera" rotation around the 3 axis using OpenGL terminology.
How is it compared to VBAP? (which is the only 3d system I used)
Thanks,
Maurizio Umberto Puxeddu.
How is it compared to VBAP? (which is the only 3d system I used)
I have only tried vbap briefly. A good thing about vbap is the possibility of placing speakers in a setup message. I have hardcoded these positions for now. I have not tested the positioning
I am using power panning with some filtering and reverb(s) to simulate the sound in the virtual room. The externals takes object x,y,z,camerax,y,z and cameraanglex,y,z (angles are computed externally from GL eyepoint, lookat and upvector positions to reduce the net data amount). The externals outputs channel levels (with distance calculaion), distance (used for calculating doppler) and a normalized z value (-1->1) in 2D speaker setups (4 and 5.1) which I plan to use for some binaural filtering experiments to simulate vertical positions in these setups.
Filtering and reverb is done in standard PD (or other libs) objects.
Cheers Soeren
can you tell me more about what you're doing with the 3d sound
engine? i'm currently working on an external that does HRTF-based spatialization. thanks,
scott
On Thu, 7 Nov 2002, Maurizio Umberto Puxeddu wrote:
On Thu, 7 Nov 2002, Søren Bovbjerg wrote:
I'd love to find out more about your 3D sound engine for PD. Is the source code available?
No, nothing has been made public yet. I have cooked up a few externals to deal with 4, 5.1 and 8 speaker arrays (8 in a cube). They also deal with distance calculation and "camera" rotation around the 3 axis using OpenGL terminology.
How is it compared to VBAP? (which is the only 3d system I used)
Thanks,
Maurizio Umberto Puxeddu.
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
"640K ought to be enough for anybody." -- Bill Gates, 1981
Have you looked at netserver/netclient in Olaf Matthes' maxlib? They are based on netsend/netreceive so they might have the same latency problem, but they make working with network connections in pd much easier.
.hc
On Wed, 6 Nov 2002, MLN Kazem, Aerospace Engineering wrote:
Hi kurt,
thanks for that, but if I were to go down the route of using communication protocols I would probably try to use tcp/ip (or udp?) as I think(?) it is in some way built into pd in order to communicate with the gui (not at all sure about this)- but I would presume this involves effectively writing a stand alone version of netsend/ receive. Have copied to list, as always, I am confused but interested. thanks again
Mandy
On Wed, 6 Nov 2002 14:40:03 +0100 kurt stockman kurt.stockman@pandora.be wrote:
hi mandy,
I'm not a programmer but as i understand it OSC is 'simply' a network protocol so if you can code C++ you should be able to write an application that can communicate with other applications/devices using OSC.
osc homepage >> http://cnmat.cnmat.berkeley.edu/OSC/
with OSC I can make my pd patches communicate with a variety of other computers/applications/people while performing. I've used it to 'talk' with flash, eyesweb and Max....
hopes this helps
kurt
-----Oorspronkelijk bericht----- Van: M.Kazem@bristol.ac.uk [mailto:M.Kazem@bristol.ac.uk] Verzonden: woensdag 6 november 2002 14:28 Aan: kurt stockman Onderwerp: RE: [PD] Netsend Jitter Elimination
Kurt
can osc allow you to send data from a C++ application to a pd application? (only just heard of osc) thanks Mandy
On Wed, 6 Nov 2002 12:29:32 +0100 kurt stockman kurt.stockman@pandora.be wrote:
have you tried OSC?
kurt
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
zen
\
\
\[D[D[D[D
Hi,
thanks for that, have looked at the maxlib stuff, am presuming that I could implement netclient and netserver in my pd application and then write my own socket to send/ receive in C++ in my C++ communicating application - I'm guessing here that there is no inherent restriction written within netclient/server that will only allow it to communicate with other pd netserver/client (respectively) implementations of socket? ie. when the data has left pd it is passed in exactly the same way as any other socket implementation? also... raising up an oldie question for me here....it would be silly to attempt to transfer audio???
On Wed, 6 Nov 2002 13:13:41 -0800 (PST) Hans-Christoph Steiner hans@eds.org wrote:
Have you looked at netserver/netclient in Olaf Matthes' maxlib? They are based on netsend/netreceive so they might have the same latency problem, but they make working with network connections in pd much easier.
.hc
On Wed, 6 Nov 2002, MLN Kazem, Aerospace Engineering wrote:
Hi kurt,
thanks for that, but if I were to go down the route of using communication protocols I would probably try to use tcp/ip (or udp?) as I think(?) it is in some way built into pd in order to communicate with the gui (not at all sure about this)- but I would presume this involves effectively writing a stand alone version of netsend/ receive. Have copied to list, as always, I am confused but interested. thanks again
Mandy
On Wed, 6 Nov 2002 14:40:03 +0100 kurt stockman kurt.stockman@pandora.be wrote:
hi mandy,
I'm not a programmer but as i understand it OSC is 'simply' a network protocol so if you can code C++ you should be able to write an application that can communicate with other applications/devices using OSC.
osc homepage >> http://cnmat.cnmat.berkeley.edu/OSC/
with OSC I can make my pd patches communicate with a variety of other computers/applications/people while performing. I've used it to 'talk' with flash, eyesweb and Max....
hopes this helps
kurt
-----Oorspronkelijk bericht----- Van: M.Kazem@bristol.ac.uk [mailto:M.Kazem@bristol.ac.uk] Verzonden: woensdag 6 november 2002 14:28 Aan: kurt stockman Onderwerp: RE: [PD] Netsend Jitter Elimination
Kurt
can osc allow you to send data from a C++ application to a pd application? (only just heard of osc) thanks Mandy
On Wed, 6 Nov 2002 12:29:32 +0100 kurt stockman kurt.stockman@pandora.be wrote:
have you tried OSC?
kurt
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
zen
\[D[D[D[D
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
"MLN Kazem, Aerospace Engineering" schrieb:
I'm guessing here that there is no inherent restriction written within netclient/server that will only allow it to communicate with other pd netserver/client (respectively) implementations of socket? ie. when the data has left pd it is passed in exactly the same way as any other socket implementation?
Yes, that's right. netserver/client are based on the nativ pd netreceive and netsend and messages are transmitted in exactly the same way (terminated with ';'). Another external I've made is flashserver which is in fact a special version of netserver that uses null terminated messages to communicate with Flash. You could even use a webbrowser to connect to it... ;-)
Olaf
What about NAS? (http://radscan.com/nas.html) -- Marc
Le jeu 07/11/2002 à 09:14, Olaf Matthes a écrit :
"MLN Kazem, Aerospace Engineering" schrieb:
I'm guessing here that there is no inherent restriction written within netclient/server that will only allow it to communicate with other pd netserver/client (respectively) implementations of socket? ie. when the data has left pd it is passed in exactly the same way as any other socket implementation?
Yes, that's right. netserver/client are based on the nativ pd netreceive and netsend and messages are transmitted in exactly the same way (terminated with ';'). Another external I've made is flashserver which is in fact a special version of netserver that uses null terminated messages to communicate with Flash. You could even use a webbrowser to connect to it... ;-)
Olaf
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
Marc,
have you used NAS from within pd?? presumably you have to use the NAS C interface functions from within pd - write a pd 'class' that uses these functions??
thanks
Mandy
On 07 Nov 2002 10:01:58 -0500 Marc Lavallée odradek@videotron.ca wrote:
What about NAS? (http://radscan.com/nas.html) -- Marc
Le jeu 07/11/2002 à 09:14, Olaf Matthes a écrit :
"MLN Kazem, Aerospace Engineering" schrieb:
I'm guessing here that there is no inherent restriction written within netclient/server that will only allow it to communicate with other pd netserver/client (respectively) implementations of socket? ie. when the data has left pd it is passed in exactly the same way as any other socket implementation?
Yes, that's right. netserver/client are based on the nativ pd netreceive and netsend and messages are transmitted in exactly the same way (terminated with ';'). Another external I've made is flashserver which is in fact a special version of netserver that uses null terminated messages to communicate with Flash. You could even use a webbrowser to connect to it... ;-)
Olaf
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
I have not used NAS at all. It might be too slow (in terms of latency), or innapropriate for some other reason. Maybe someone on the list knows about NAS? -- Marc
Le ven 08/11/2002 à 06:31, MLN Kazem, Aerospace Engineering a écrit :
Marc,
have you used NAS from within pd?? presumably you have to use the NAS C interface functions from within pd - write a pd 'class' that uses these functions??
thanks
Mandy
On 07 Nov 2002 10:01:58 -0500 Marc Lavallée odradek@videotron.ca wrote:
What about NAS? (http://radscan.com/nas.html) -- Marc
Le jeu 07/11/2002 à 09:14, Olaf Matthes a écrit :
"MLN Kazem, Aerospace Engineering" schrieb:
I'm guessing here that there is no inherent restriction written within netclient/server that will only allow it to communicate with other pd netserver/client (respectively) implementations of socket? ie. when the data has left pd it is passed in exactly the same way as any other socket implementation?
Yes, that's right. netserver/client are based on the nativ pd netreceive and netsend and messages are transmitted in exactly the same way (terminated with ';'). Another external I've made is flashserver which is in fact a special version of netserver that uses null terminated messages to communicate with Flash. You could even use a webbrowser to connect to it... ;-)
Olaf
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
MLN Kazem, Aerospace Engineering M.Kazem@bristol.ac.uk Tel. 0117 9288219 Fax. 0117 9272771
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list