Re: [PD] OSC server to many clients

2014-02-02 Thread Martin Peach
On 2014-02-02 11:37, Atte wrote: Hi Basic OSC confusion here: I'd like to run a server that keeps track of time and shares that to a number of clients, each of which run on their own, but with access to this common, global time. However all the examples I found with [sendOSC] or [tcpsend] sugge

Re: [PD] OSC server to many clients

2014-02-02 Thread Antoine Villeret
if you want to make one server talking to several clients, you could use [tcpserver]/[tcpclient] and encapsulate your OSC in Slip packet see [mrpeach] externals + a -- do it yourself http://antoine.villeret.free.fr 2014-02-02 Joel Matthys : > You can broadcast over UDP by sending to the addres

Re: [PD] OSC server to many clients

2014-02-02 Thread Joel Matthys
You can broadcast over UDP by sending to the address 255.255.255.255. Joel On Feb 2, 2014 10:57 AM, "Atte" wrote: > Hi > > Basic OSC confusion here: I'd like to run a server that keeps track of > time and shares that to a number of clients, each of which run on their > own, but with access to th

Re: [PD] OSC server to many clients

2014-02-02 Thread u...@xdv.org
On 02.02.2014 17:37, Atte wrote: Hi Basic OSC confusion here: I'd like to run a server that keeps track of time and shares that to a number of clients, each of which run on their own, but with access to this common, global time. However all the examples I found with [sendOSC] or [tcpsend] su

[PD] OSC server to many clients

2014-02-02 Thread Atte
Hi Basic OSC confusion here: I'd like to run a server that keeps track of time and shares that to a number of clients, each of which run on their own, but with access to this common, global time. However all the examples I found with [sendOSC] or [tcpsend] suggests that the sender connects t

Re: [PD] OSC-motion for Pure Data

2013-11-17 Thread Matthias Kronlachner
Hi! I don't see the necessity for this tool. There is this pd external which gives you all tracking data of the Leap Motion. http://puredatajapan.info/?page_id=1514 It works fine for me. Matthias On 11/17/13 6:36 PM, Pagano, Patrick wrote: Have you all seen this? https://airspace.leapmotion

[PD] OSC-motion for Pure Data

2013-11-17 Thread Pagano, Patrick
Have you all seen this? https://airspace.leapmotion.com/apps/osc-motion/osx I grabbed it because i just got a Leap Motion but the help patch on the Vimeo help page does not seem to work like the video example. The "LM.pd" fille is the one from the website, the help1 file is my quick patch to at l

Re: [PD] namespaces in help files [was: Re: [pd] osc processing array to the pd table]

2012-09-30 Thread Jonathan Wilkes
> > From: Patrice Colet >To: pd-list >Cc: Jonathan Wilkes >Sent: Sunday, September 30, 2012 9:06 PM >Subject: Re: [PD] namespaces in help files [was: Re: [pd] osc processing array >to the pd table] > > >> De: "Jonathan W

Re: [PD] namespaces in help files [was: Re: [pd] osc processing array to the pd table]

2012-09-30 Thread Patrice Colet
> De: "Jonathan Wilkes" > > I use to remove all the stuff at startup and use this namespace/ > > stuff, or even > > better, the [declare] thingy in main patches, > > then it's easier to figure out what's happening. > > > > It would be cool to have this in help files, > > That shouldn't be nece

Re: [PD] namespaces in help files [was: Re: [pd] osc processing array to the pd table]

2012-09-30 Thread Jonathan Wilkes
- Original Message - > From: Patrice Colet > To: pd-list > Cc: > Sent: Sunday, September 30, 2012 1:50 PM > Subject: [PD] namespaces in help files [was: Re: [pd] osc processing array to > the pd table] > > Hello Billy, hello pd-list, > > sorry to i

[PD] namespaces in help files [was: Re: [pd] osc processing array to the pd table]

2012-09-30 Thread Patrice Colet
Hello Billy, hello pd-list, sorry to interfere into this interesting discussion... I making another topic so it shouldn't be embarrassing... > [iemnet/udpreceive] before it would load I guess it all depends on > the > stuff in startup I use to remove all the stuff at startup and use this namespa

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Billy Stiltner
Thanks again something weird I noticed that I could type [udpreceive] without port number and it gave me an object with 3 outlets till the patch was reloaded then I had to make it like this [iemnet/udpreceive] before it would load I guess it all depends on the stuff in startup On Sun, Sep 30, 201

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread IOhannes m zmölnig
On 09/30/2012 01:24 PM, Billy Stiltner wrote: > thank you IOhannes m zmölnig > now I can assign a port per synth, I'm not sure it is a good idea now i don't think this is a good idea. instead, use an OSC-prefix for each synth: /FM/1/... /FM/2/... /Drone/... _

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Billy Stiltner
thank you IOhannes m zmölnig now I can assign a port per synth, I'm not sure it is a good idea now On Sun, Sep 30, 2012 at 7:06 AM, IOhannes m zmölnig wrote: > On 09/30/2012 09:48 AM, Billy Stiltner wrote: >> thank you very much Cyrille >> I figured that out after I pretended I was a table and re

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread IOhannes m zmölnig
On 09/30/2012 09:48 AM, Billy Stiltner wrote: > thank you very much Cyrille > I figured that out after I pretended I was a table and read the > tabwrite documentation I think, haha > > now I am wondering if there is an udpreceive that works with osc > messages that has an inlet to change the port

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Ingo
The first number is the value and the second number is the position. Ingo > The 1st arg of the list is the position where to write in the table. > you certainly want to add a 0 in front of the list. > cheers > c > > > Le 30/09/2012 04:11, Billy Stiltner a écrit : > > got another question > > >

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Billy Stiltner
thank you very much Cyrille I figured that out after I pretended I was a table and read the tabwrite documentation I think, haha now I am wondering if there is an udpreceive that works with osc messages that has an inlet to change the port without having to resort to hoodoo trickery On Sun, Sep 3

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Cyrille Henry
The 1st arg of the list is the position where to write in the table. you certainly want to add a 0 in front of the list. cheers c Le 30/09/2012 04:11, Billy Stiltner a écrit : got another question [2 5.5 7 9 3( | [s mytable] [table mytable] why do I not get a write to mytable[0] with a 2

Re: [PD] [pd] osc processing array to the pd table

2012-09-29 Thread Billy Stiltner
got another question [2 5.5 7 9 3( | [s mytable] [table mytable] why do I not get a write to mytable[0] with a 2 when i click the messagebox? ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinf

Re: [PD] [pd] osc processing array to the pd table

2012-09-29 Thread Billy Stiltner
nevermind got it figured out .length gives me the number of Strings in a String array in java. this was the piece of info I was stuck on ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

[PD] [pd] osc processing array to the pd table

2012-09-29 Thread Billy Stiltner
hey i have had a time with getting some data to go across the network with osc i can open a file in processing and send it to pd as a string and receive it as a string in pd but then can not get a table to take it as a list of floats. so now i have broken up the string in processing into individua

Re: [PD] OSC strings and Pd symbols

2012-03-23 Thread Billy Stiltner
haha! > > Using ReBirth is like trying to play an 808 with a long stick.-David > Zicarelli > > > ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http:

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Roman Haefeli
change. I'm all excited about being able to use > >>>>> funny symbols for GUI designing ;-) > >>>> > >>>> This sounds like a good change but a risky one. > >>> > >>> Can you elaborate on that? It does not harm Pd in

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Hans-Christoph Steiner
>>>>> >>>>> Thanks a lot for this change. I'm all excited about being able to use >>>>> funny symbols for GUI designing ;-) >>>> >>>> This sounds like a good change but a risky one. >>> >>> Can you elabo

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Roman Haefeli
gt; funny symbols for GUI designing ;-) > >> > >> This sounds like a good change but a risky one. > > > > Can you elaborate on that? It does not harm Pd in any way, as we already > > figured out. All I implementations of OSC I could find do actually > >

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Hans-Christoph Steiner
gt; figured out. All I implementations of OSC I could find do actually > _support_ UTF-8 (or probably more precise: they do not check at all and > live a happy live). > >> Since Pd-extended 0.43 is beta, I think it would be best to not >> include it. What do you think? >

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Roman Haefeli
py live). > Since Pd-extended 0.43 is beta, I think it would be best to not > include it. What do you think? If you do not include that change, it might happen, that in Pd OSC messages are dropped that work everywhere else. Why would you intentionally keep such a situation? If you

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Hans-Christoph Steiner
On Mar 21, 2012, at 5:26 AM, Roman Haefeli wrote: > On Tue, 2012-03-20 at 18:21 -0400, Martin Peach wrote: >> So I just committed a new [unpackOSC] to svn. > > Cool! > >> I don't really have a sure >> way of generating UTF-8 in Pd so someone with a non-US keyboard will >> have to test it. I

Re: [PD] OSC strings and Pd symbols

2012-03-21 Thread Roman Haefeli
On Tue, 2012-03-20 at 18:21 -0400, Martin Peach wrote: > So I just committed a new [unpackOSC] to svn. Cool! > I don't really have a sure > way of generating UTF-8 in Pd so someone with a non-US keyboard will > have to test it. I can do things like the accented e and mu but serious > symbols

Re: [PD] OSC strings and Pd symbols

2012-03-20 Thread Martin Peach
So I just committed a new [unpackOSC] to svn. I don't really have a sure way of generating UTF-8 in Pd so someone with a non-US keyboard will have to test it. I can do things like the accented e and mu but serious symbols end up as something like /u123 if I try to paste them into Pd. Martin O

Re: [PD] OSC strings and Pd symbols

2012-03-20 Thread Martin Peach
Hi Roman, I'll look into implementing that. I don't see what harm it could do. Martin On 2012-03-20 04:58, Roman Haefeli wrote: Hey Martin Do you have an opinion on this? Would it do any harm if [packOSC] and [unpackOSC] would allow UTF-8 in strings? Roman On Tue, 2012-03-13 at 11:08 +0100

Re: [PD] OSC strings and Pd symbols

2012-03-20 Thread Roman Haefeli
Hey Martin Do you have an opinion on this? Would it do any harm if [packOSC] and [unpackOSC] would allow UTF-8 in strings? Roman On Tue, 2012-03-13 at 11:08 +0100, Roman Haefeli wrote: > Hi all > > Nowadays, Pd supports UTF-8 and it's possible to type non-ASCII > characters into a symbol box (

[PD] OSC strings and Pd symbols

2012-03-13 Thread Roman Haefeli
Hi all Nowadays, Pd supports UTF-8 and it's possible to type non-ASCII characters into a symbol box (or a message box, if you like). This is generally good thing. When working with [packOSC], every symbolic (non-number) element is treated automagically as a OSC string (unless you create type-forc

Re: [PD] OSC Sequencer IanniX

2012-02-29 Thread Christoph Kuhr
Hi chris, I could do a x64 build for linux if you like to... I'd welcome developer contributions once I get this version >sufficiently complete. > >It does now support midi clock, midi position pointer and midi time >code so it's easier to work with other midi based software - so far >tested with

Re: [PD] OSC Sequencer IanniX

2012-02-28 Thread chrisgr99
I'd welcome developer contributions once I get this version sufficiently complete. It does now support midi clock, midi position pointer and midi time code so it's easier to work with other midi based software - so far tested with Live and Numerology. And I've included a placeholder for OSC based

Re: [PD] OSC Sequencer IanniX

2012-02-28 Thread Christoph Kuhr
Your fork sounds good! I would later like to add some audio/video bridging control modules... -- Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://li

[PD] OSC Sequencer IanniX

2012-02-28 Thread chrisgr99
You may also be interested in a project I started about six months ago, which is a fork of IanniX I call GeoSonix. It will be free and open source. In a week or two it will be available as an alpha download of the source or executables on Bitbucket. At this point only OSX and Windows because I

Re: [PD] OSC Sequencer IanniX

2012-02-28 Thread chrisgr99
You may also be interested in a project I started about six months ago, which is a fork of IanniX I call GeoSonix. It will be free and open source. In a week or two it will be available as an alpha download of the source or executables on Bitbucket. At this point only OSX and Windows because I

Re: [PD] OSC Sequencer IanniX

2012-02-27 Thread Husk 00
On Mon, Feb 27, 2012 at 10:48 PM, Christoph Kuhr wrote: > Im no developer (yet?), > i just thought more poeple should know of it! > > > It's really a cool tool! I have been using it during my interaction design workshop with good feedback from people. I never could use linux version (it crash af

Re: [PD] OSC Sequencer IanniX

2012-02-27 Thread Christoph Kuhr
Im no developer (yet?), i just thought more poeple should know of it! On 27.02.2012 22:31, Andy Farnell wrote: I'm glad to see this is still alive. It's quite old now right? A few years back I was very excited by it and downloaded and spent too long trying to get it to compile. I hope the buil

Re: [PD] OSC Sequencer IanniX

2012-02-27 Thread Andy Farnell
I'm glad to see this is still alive. It's quite old now right? A few years back I was very excited by it and downloaded and spent too long trying to get it to compile. I hope the build/dependencies are much better now. Thanks for continuing to develop and sharing this cool looking OSC sequencer

[PD] OSC Sequencer IanniX

2012-02-27 Thread Christoph Kuhr
Hi, I wanted to announce a cool OSC sequencer. IanniX www.IanniX.org until now i didnt hear anything of it here so i thought it could be interesting for many others out there... the community is still small and the software really powerful! if someone is already using it, i would be glad to s

Re: [PD] osc logger

2012-02-20 Thread Pedro Lopes
Just to log i used oscpack (http://www.rossbencina.com/code/oscpack) in command line and just dump the whole thing ./oscpack whatever arguments >> logfile And use some scripts to automatically rename logs, and etc... best, Pedro On Sat, Feb 18, 2012 at 8:40 PM, Hans-Christoph Steiner wrote: >

Re: [PD] osc logger

2012-02-18 Thread Hans-Christoph Steiner
Try using [textfile] for writing to a soundfile. I've had good luck with it. .hc On Feb 18, 2012, at 1:06 PM, Jeppi Jeppi wrote: > Hi all, > I build a [coll]-based OSC logger to save to a file all the OSC activity > received from the network (coming from 9 to 12 nodes). Unfortunately it seems

[PD] osc logger

2012-02-18 Thread Jeppi Jeppi
Hi all,I build a [coll]-based OSC logger to save to a file all the OSC activity received from the network (coming from 9 to 12 nodes). Unfortunately it seems it severely interferes with realtime audio in that PD instance when too much OSC is received.I wonder if any of you tried a different app

Re: [PD] OSC namespaces and how to tame them?

2012-01-24 Thread Julian Brooks
[splitfilename] is indeed my friend. J On 24 January 2012 20:44, Julian Brooks wrote: > Dear Batinste & Martin, > > Many thanks for your responses... > > Will investigate splitfilename further and Martin's suggestions (I had > looked at the help file honest:). > > I obviously need to think this

Re: [PD] OSC namespaces and how to tame them?

2012-01-24 Thread Julian Brooks
Dear Batinste & Martin, Many thanks for your responses... Will investigate splitfilename further and Martin's suggestions (I had looked at the help file honest:). I obviously need to think this through further but what I would really like is something that not only gives me access to the data th

Re: [PD] OSC namespaces and how to tame them?

2012-01-24 Thread Martin Peach
You can use wild cards like [routeOSC /*/*/noteon ] or use a [set /x/y/z( message to dynamically set [routeOSC]'s path(s). Martin On 2012-01-24 06:46, Julian Brooks wrote: Hi all, I'm looking for something that can quickly trim fairly long lists of incoming OSC messages, for example: slime/us

Re: [PD] OSC namespaces and how to tame them?

2012-01-24 Thread batinste
hi see [splitfilename] On 24/01/2012 12:46, Julian Brooks wrote: > Hi all, > > I'm looking for something that can quickly trim fairly long lists of > incoming OSC messages, for example: > slime/user/sb/app/renoise/midichannel/3/noteon/38 127 > So that I can just get at '38 127'? > > Theses lists

[PD] OSC namespaces and how to tame them?

2012-01-24 Thread Julian Brooks
Hi all, I'm looking for something that can quickly trim fairly long lists of incoming OSC messages, for example: slime/user/sb/app/renoise/midichannel/3/noteon/38 127 So that I can just get at '38 127'? Theses lists are dynamic, so it's not possible to have them setup beforehand apart from the 1s

Re: [PD] OSC Confusion

2011-09-07 Thread Roman Haefeli
On Wed, 2011-09-07 at 21:00 -0700, Jim Aikin wrote: > > This leads me to a concatenation of questions. > > (1) Does the fact that OSCroute, sendOSC, and dumpOSC are deprecated > mean that they actually don't work, or do they still work? They probably still work, but are not maintained actively

Re: [PD] OSC Confusion

2011-09-07 Thread Patrice Colet
hello, mrPeach OSC objects, and many other ones are stuffed into pd-extended's nightly builds, you can find them at this url: http://autobuild.puredata.info/auto-build/latest/ - "Jim Aikin" a écrit : > I've been using Pd 0.41.4-extended in Windows 7 64-bit. Attempting to > > open up OS

Re: [PD] OSC Confusion

2011-09-07 Thread Richie Cyngler
Have you tried [O] | [import mrpeach] then [udprecieve ] (the is whatever port your are using), | [routeOSC] etc? On Thu, Sep 8, 2011 at 2:00 PM, Jim Aikin wrote: > I've been using Pd 0.41.4-extended in Windows 7 64-bit. Attempting to open > up OSCroute-help.pd consistently crashes

[PD] OSC Confusion

2011-09-07 Thread Jim Aikin
I've been using Pd 0.41.4-extended in Windows 7 64-bit. Attempting to open up OSCroute-help.pd consistently crashes Pd. So I do the sensible thing and upgrade to 0.42.5. However, I now see messages telling me that sendOSC, dumpOSC, and OSCroute, which 0.41.4 seemed to have no trouble with, are

Re: [PD] Osc phase and number of periods for subsonic touch-music

2010-12-13 Thread Andy Farnell
Hi Daniel, Sorry for the late reply on this subject. To do exactly as you describe it is possible to take the cosine or sine of a line over period. Use [vline~] as it is much more flexible. Take a line running from 0 to 1 in some time, and use the cosine function to obtain exactly one perio

Re: [PD] Osc phase and number of periods for subsonic touch-music

2010-12-08 Thread Claude Heiland-Allen
On 08/12/10 07:32, Daniel K. wrote: generating sine waves with finite numbers of periods that always started with the same phase. 10 periods of 20Hz sine wave, subsample accurate timing without needing [block~]: "0, 10 500" | [vline~] | [- 0.25] | [cos~] | [dac~] For N periods of F Hz

[PD] Osc phase and number of periods for subsonic touch-music

2010-12-08 Thread Collin Oldham
Hi, You can reset the phase of an [osc~] by sending a message to its right inlet. In your case the message would be [0.25( , i.e. 1/4 of the way through the cosine wave form, which is zero. That won't work at the note off, though, so the sensible thing would be to use an envelope. But, if yo

Re: [PD] Osc phase and number of periods for subsonic touch-music, (Daniel K.)

2010-12-08 Thread david medine
Daniel, You could make a table with a sine wave form in it and drive it with a [tabosc4~] object. The only way (as far as I know) to ensure sample accuracy for this is to set the blocksize to 1 (use the [blocksize] object). Otherwise you might run over the end of your table by as much as 63 sa

Re: [PD] Osc phase and number of periods for subsonic touch-music

2010-12-08 Thread Ludwig Maes
Could you be more specific, im not sure I entirely understand the problem... On 8 December 2010 08:32, Daniel K. wrote: > > I'm working on re-realizing a piece I wrote for subwoofer that is meant to > be felt by touching the speaker cone instead of hearing it. This is done by > using sine waves f

[PD] Osc phase and number of periods for subsonic touch-music

2010-12-07 Thread Daniel K.
I'm working on re-realizing a piece I wrote for subwoofer that is meant to be felt by touching the speaker cone instead of hearing it. This is done by using sine waves from around 15 to 26 Hz at low volume adn utilizing difference frequencies to get lower frequency pulses. My problem is that the wa

[PD] OSC sampler

2010-10-27 Thread Pagano, Patrick
Hi Thank you to everyone who helped out with my OSC sampler that takes OSC messages from an Organic Motion markerless motion capture stage being run by Jmonkey engine. It requires Nslam xjimmies & LyonPotpourri and Grain2.0 by Bill Orcutt. Let me know if anyone wants to Czech it out and I'll z

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread Martin Peach
How about making a simple [udpreceive] | [print] for a typical message and then post the result. Then we could see if it's an OSC message or not and stop guessing what the problem is. Martin On 2010-10-27 07:52, Roman Haefeli wrote: Hi Leandro I may have a hint, though I don't have the

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread Roman Haefeli
Hi Leandro I may have a hint, though I don't have the time to test it myself. From [1] I found this: OSC Bundles An OSC Bundle consists of the OSC-string "#bundle" followed by an OSC Time Tag, followed by zero or more OSC Bundle Elements. The OSC-timetag is a 64-bit fixed point time tag whose se

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread Leandro da Mota Damasceno
i got the impression it could be something like that. One easy way to translate it would be through max/msp itself, but then again i would have another patch running just to do a very simple task, and it doesn't sound very efficient. I do agree that translating is the best solution right now and th

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread IOhannes m zmoelnig
On 2010-10-27 09:47, Leandro da Mota Damasceno wrote: > Hi Roman > > It's ok, i just keep forgetting to reply to all... > > so, I really don't understand how that could be happening, especially when > in max/MSP i don't have to route any #bundle tag. It's funny how it shows > how different it is

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread Roman Haefeli
On Wed, 2010-10-27 at 09:47 +0200, Leandro da Mota Damasceno wrote: > Hi Roman > > It's ok, i just keep forgetting to reply to all... > > > so, I really don't understand how that could be happening, especially > when in max/MSP i don't have to route any #bundle tag. It's funny how > it shows how

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread Leandro da Mota Damasceno
Hi Roman It's ok, i just keep forgetting to reply to all... so, I really don't understand how that could be happening, especially when in max/MSP i don't have to route any #bundle tag. It's funny how it shows how different it is to work with osc in both languages. the deadline for next week is w

Re: [PD] OSC messages without / (fwd)

2010-10-27 Thread Roman Haefeli
Hi Leandro Sorry for not having responded quickly. I know that OSC supports so-called bundled messages. However, I haven't yet investigated how they actually work. It seems like your Max patch is sending bundled OSC messages. It seems like those are tagged with a '#bundle' and obviously the '/'

Re: [PD] OSC messages without / (fwd)

2010-10-25 Thread Roman Haefeli
Sorry, I definitely missed your reply then. Can you post the error message again? Roman On Mon, 2010-10-25 at 02:46 +0200, Leandro da Mota Damasceno wrote: > It partially worked. It seems to be something ALMOST there, but I got > an error message. I posted a few days ago. But it's definitely the

Re: [PD] OSC messages without / (fwd)

2010-10-24 Thread Leandro da Mota Damasceno
It partially worked. It seems to be something ALMOST there, but I got an error message. I posted a few days ago. But it's definitely the best solution right now On Sun, Oct 24, 2010 at 10:45 PM, Roman Haefeli wrote: > On Sat, 2010-10-23 at 09:40 +0200, Leandro da Mota Damasceno wrote: > > Hi > >

Re: [PD] OSC messages without / (fwd)

2010-10-24 Thread Roman Haefeli
On Sat, 2010-10-23 at 09:40 +0200, Leandro da Mota Damasceno wrote: > Hi > > > I would like to apologize for the private emails. it's that when I > reply to the messages they go to the author, not the list. Weird. > that's not what happens in other mailing lists... > > > So, I have tried to fix

Re: [PD] OSC messages without / (fwd)

2010-10-23 Thread Leandro da Mota Damasceno
Hi I would like to apologize for the private emails. it's that when I reply to the messages they go to the author, not the list. Weird. that's not what happens in other mailing lists... So, I have tried to fix the standalone as jasch suggested, but i got all sorts of error messages. I would have

Re: [PD] OSC messages without / (fwd)

2010-10-22 Thread IOhannes m zmölnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > From: Leandro da Mota Damasceno > > Let's think in a different way... Why would I just use a udpreceive and > a route in Max/MSP to make it work and why doesn't it work with PD? What > does > the udpreceive does differently for the output in Max/MS

Re: [PD] OSC messages without / (fwd)

2010-10-22 Thread Mathieu Bouchard
rom: Leandro da Mota Damasceno To: Mathieu Bouchard Subject: Re: [PD] OSC messages without / Let's think in a different way... Why would I just use a udpreceive and a route in Max/MSP to make it work and why doesn't it work with PD? What does the udpreceive does differently for th

Re: [PD] OSC messages without /

2010-10-21 Thread Martin Peach
On 2010-10-21 13:26, Leandro da Mota Damasceno wrote: Hey guys So, I am working with a Max/MSP standalone application that sends OSC messages through UDP, but it's not using any / signs in the beginning of the message. So I'm getting the following in PD unpackOSC: Path doesn't begin with "/", d

Re: [PD] OSC messages without /

2010-10-21 Thread Leandro da Mota Damasceno
Hi Roman Thanks for the help. Actually, I did not write the code in Max/MSP, but I think I will end up writing my own version of the application, because it does need a lot of tweaking. It is funny to realize how Max/MSP can be kind of agnostic towards that. Well, I will try your patch. I hope it

Re: [PD] OSC messages without /

2010-10-21 Thread Roman Haefeli
Hi again (I reply to the list as well...) Yeah, I now remember that the OSC address must always be a multiple of 4 bytes long. I also stumbled across this problem a while ago and wrote an abstraction back then that does pad the the address of the OSC message with zeros as needed. Insert it right

Re: [PD] OSC messages without /

2010-10-21 Thread Roman Haefeli
On Thu, 2010-10-21 at 19:39 +0100, Claude Heiland-Allen wrote: > On 21/10/10 18:26, Leandro da Mota Damasceno wrote: > > So, the question is... Is there any workaround I could try in PD? > > | > [list split 1] > | | > "/$1" | > | | > [list append ] > | > [list trim]

Re: [PD] OSC messages without /

2010-10-21 Thread Claude Heiland-Allen
On 21/10/10 18:26, Leandro da Mota Damasceno wrote: So, the question is... Is there any workaround I could try in PD? | [list split 1] | | "/$1" | | | [list append ] | [list trim] | ___ Pd-list@iem.at mailing list UNSUBSC

Re: [PD] OSC messages without /

2010-10-21 Thread Mathieu Bouchard
On Thu, 21 Oct 2010, Leandro da Mota Damasceno wrote: Like, a lot. It just ignores the messages because of the lack of the "/". Since the standalone application was made by Max/MSP users, they ignored this apparent limitation on PD. In fact, I tried in Max/MSP with a udpreceive object linked t

Re: [PD] OSC messages without /

2010-10-21 Thread IOhannes m zmölnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/21/2010 07:26 PM, Leandro da Mota Damasceno wrote: > Hey guys > > So, I am working with a Max/MSP standalone application that sends OSC > messages through UDP, but it's not using any / signs in the beginning of the > message. So I'm getting the

[PD] OSC messages without /

2010-10-21 Thread Leandro da Mota Damasceno
Hey guys So, I am working with a Max/MSP standalone application that sends OSC messages through UDP, but it's not using any / signs in the beginning of the message. So I'm getting the following in PD unpackOSC: Path doesn't begin with "/", dropping message Like, a lot. It just ignores the messag

Re: [PD] OSC in pd-extended 0.41.4 on Mac OS X Intel

2010-01-25 Thread IOhannes m zmoelnig
rene beekman wrote: > I have a prebuilt pd-extended 0.41.4 install on an Intel mac running snow > leopard, where sendOSC and OSCroute work, but dumpOSC gives a "... couldn't > create" error > the dumpOSC.pd_darwin object does exist in the /Contents/Plugins/osx folder btw, you should use [udprece

Re: [PD] OSC in pd-extended 0.41.4 on Mac OS X Intel

2010-01-23 Thread Hans-Christoph Steiner
Did that last night :) http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=13084 .hc On Jan 23, 2010, at 10:41 AM, rene beekman wrote: indeed :) would it be possible to change the error message in the pd window accordingly to something more helpful like "could not creat

Re: [PD] OSC in pd-extended 0.41.4 on Mac OS X Intel

2010-01-23 Thread rene beekman
indeed :) would it be possible to change the error message in the pd window accordingly to something more helpful like "could not create. missing argument. please use [dumpOSC ] ? rene On Jan 23, 2010, at 06:16, Hans-Christoph Steiner wrote: > > You probably need to add a port#. This wor

Re: [PD] OSC in pd-extended 0.41.4 on Mac OS X Intel

2010-01-22 Thread Hans-Christoph Steiner
You probably need to add a port#. This worked for me: [oscx/dumpOSC 23444] .hc On Jan 22, 2010, at 1:04 PM, rene beekman wrote: I have a prebuilt pd-extended 0.41.4 install on an Intel mac running snow leopard, where sendOSC and OSCroute work, but dumpOSC gives a "... couldn't create"

[PD] OSC in pd-extended 0.41.4 on Mac OS X Intel

2010-01-22 Thread rene beekman
I have a prebuilt pd-extended 0.41.4 install on an Intel mac running snow leopard, where sendOSC and OSCroute work, but dumpOSC gives a "... couldn't create" error the dumpOSC.pd_darwin object does exist in the /Contents/Plugins/osx folder I just tried to re-install from a clean download, same p

Re: [PD] OSC

2009-10-27 Thread João Pais
Btw, is oscroute better than normal route? That is, are there advantages it's something different. in doing the routing in osc, besides just outside osc? (relatively to where osc is concerned, not about patching after/before osc) an OSC message is "/bi/ba/bo 1 2 3". with [route] you can stri

Re: [PD] OSC

2009-10-27 Thread IOhannes m zmoelnig
João Pais wrote: > Hi, > > is there any clear place which describes the advantages of this package > with the old osc objects? I still use the old ones, but for very simple > operations. no. i guess the best is the list archives and http://wiki.puredata.info/en/How_to_use_OSC > > Btw, is oscro

Re: [PD] OSC

2009-10-27 Thread João Pais
Hi, is there any clear place which describes the advantages of this package with the old osc objects? I still use the old ones, but for very simple operations. Btw, is oscroute better than normal route? That is, are there advantages in doing the routing in osc, besides just outside osc? (

Re: [PD] OSC

2009-10-26 Thread Jaime Oliver
great thanks! I'll check them out, J On Mon, Oct 26, 2009 at 8:15 PM, Martin Peach wrote: > Jaime Oliver wrote: >> >> Hi all, >> >> Does anyone know of a later implementation of OSC for Pd, besides >> Martin Peach's 2006? > > Some changes since then: > http://pure-data.svn.sourceforge.net/viewv

Re: [PD] OSC

2009-10-26 Thread Martin Peach
Jaime Oliver wrote: Hi all, Does anyone know of a later implementation of OSC for Pd, besides Martin Peach's 2006? Some changes since then: http://pure-data.svn.sourceforge.net/viewvc/pure-data/trunk/externals/mrpeach/osc/ Martin ___ Pd-list@iem.a

[PD] OSC

2009-10-26 Thread Jaime Oliver
Hi all, Does anyone know of a later implementation of OSC for Pd, besides Martin Peach's 2006? best, J -- Jaime E Oliver LR joliv...@ucsd.edu www.realidadvisual.org/jaimeoliver www-crca.ucsd.edu/ www.realidadvisual.org 858 202 1522 9168 Regents Rd. Apt. G La Jolla, CA 92037 USA

[PD] OSC controlled audio file player

2009-03-21 Thread alvaro
Hi all, I just spawned a rather bombastic project, called OSCPlayer. The complete description is on http://puredata.info/Members/alvarito/OSCPlayer Here's the short version: = During the Radio1:1 (htp://www.radioeinszueins.de) experiment, Berlin, June to August 2006, our team deci

Re: [PD] osc on winXP

2008-11-19 Thread IOhannes m zmoelnig
Andrew Turley wrote: > [dumpOSC] seems to require a port argument, otherwise it will not be > created correctly. Thus, you need: > > [dumpOSC 9393] > > rather than just: > > [dumpOSC] > > Also, if you try to create a second instance of [dumpOSC] with the > same port as an existing instance, the

Re: [PD] osc on winXP

2008-11-18 Thread Andrew Turley
[dumpOSC] seems to require a port argument, otherwise it will not be created correctly. Thus, you need: [dumpOSC 9393] rather than just: [dumpOSC] Also, if you try to create a second instance of [dumpOSC] with the same port as an existing instance, the new instance will not be created. I hope

[PD] osc on winXP

2008-11-18 Thread Oded Ben-Tal
I'm not sure it's a bug or I'm missing something. I am having problems with oscx objects (Pd version 0.40.3-extended-20080721): I can create [sendOSC] but not [dumpOSC] If I open the helpfile for dumpOSC it usually (but not always!) displays fine but if I try copy/paste to another patch it doesn

Re: [PD] midi -> pd -> osc

2008-03-12 Thread Martin Peach
Try something like the attached patch. Martin Atte André Jensen wrote: Hi I'd like to build a performance interface in pd for controlling chuck in realtime. I was hoping to make the widgets in pd send osc to chuck. Also I'd like them to be "slaves" of incomming midi cc messages (for sliders)

[PD] midi -> pd -> osc

2008-03-12 Thread Atte André Jensen
Hi I'd like to build a performance interface in pd for controlling chuck in realtime. I was hoping to make the widgets in pd send osc to chuck. Also I'd like them to be "slaves" of incomming midi cc messages (for sliders) or laptop-keyboard input (for switches). Is such a thing possible, anyth

[PD] OSC in Pd [was: Re: SSSAD vs MEMENTO]

2008-01-05 Thread Frank Barknecht
Hallo, Miller Puckette hat gesagt: // Miller Puckette wrote: > I'd still have to track changes in the OSC code and periodically "import" > them to the Pd sources, which is very error-prone. I believ it wouldn't be that bad: OSC has a specification just like MIDI, and this spec doesn't change that

  1   2   >