Re: [PD] pd to webpage

2007-10-18 Thread Frank Barknecht
Hallo, Hans-Christoph Steiner hat gesagt: // Hans-Christoph Steiner wrote: This is very cool, keep us posted on your progress! I am thinking of trying to write an IRC client in Pd. Then there could be an embedded IRC client in Pd-extended that is tied into the help system. You click

Re: [PD] pd to webpage

2007-10-18 Thread Thomas O Fredericks
What is the difference between [str] and [any2string]? If I understand correctly str is a wrapper for standard string functions and it's output is a pointer to a string. I believe this approach is more limited that using any2string because all basic string functions can be recreated once a symbol

Re: [PD] pd to webpage

2007-10-18 Thread Thomas O Fredericks
The help is in moocow/pdstring-help.pd Tom On 10/18/07, Martin Peach [EMAIL PROTECTED] wrote: Thomas O Fredericks wrote: What is the difference between [str] and [any2string]? I don't know. I can't find the help file for [any2string] so I don't know how to use it. Maybe I have to look at

Re: [PD] pd to webpage

2007-10-18 Thread Thomas O Fredericks
The main difference is that moocow's conversion of a message into a string appends a 0 at the end of the created list. Tom On 10/18/07, Thomas O Fredericks [EMAIL PROTECTED] wrote: The help is in moocow/pdstring-help.pd Tom On 10/18/07, Martin Peach [EMAIL PROTECTED] wrote: Thomas O

Re: [PD] pd to webpage

2007-10-18 Thread IOhannes m zmoelnig
Thomas O Fredericks wrote: The main difference is that moocow's conversion of a message into a string appends a 0 at the end of the created list. which is not true any more with recent versions of pdstring. the main difference still is, that str requires a patched version of Pd. fmard

Re: [PD] pd to webpage

2007-10-18 Thread Martin Peach
Thomas O Fredericks wrote: The help is in moocow/pdstring-help.pd It's not there in the autobuilt Pd version 0.40.3-extended-20070905 even though any2string is there in extra/flatspace, but I found it in cvs. I'll see if I can do the webserver with it. Martin Tom On 10/18/07, Martin

Re: [PD] pd to webpage

2007-10-18 Thread IOhannes m zmoelnig
Bryan Jurish wrote: run. Hopefully, at some point I'll be able to implement [any2string] and [string2any] as simple wrappers around [str], but I haven't gotten around to trying it yet ;-) in the meantime, could you have a look at my last bugreport on pdstrings? fmg.asdr IOhannes

Re: [PD] pd to webpage

2007-10-18 Thread Mathieu Bouchard
On Thu, 18 Oct 2007, Thomas O Fredericks wrote: The main difference is that moocow's conversion of a message into a string appends a 0 at the end of the created list. Most likely it shouldn't, unless it uses the 0 as separator or terminator in what could be any number of strings in the same

Re: [PD] pd to webpage

2007-10-18 Thread Thomas O Fredericks
Attached, two abstractions that can help. Feel free to modify. Tom On 10/18/07, Martin Peach [EMAIL PROTECTED] wrote: Thomas O Fredericks wrote: The help is in moocow/pdstring-help.pd It's not there in the autobuilt Pd version 0.40.3-extended-20070905 even though any2string is there in

[PD] pd to webpage

2007-10-17 Thread mami music
hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers, that can be refreshed every 500 msec. Im wondering how to create a webpage that receives a remote

Re: [PD] pd to webpage

2007-10-17 Thread Patrice Colet
mami music a écrit : hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers, that can be refreshed every 500 msec. Im wondering how to create

Re: [PD] pd to webpage

2007-10-17 Thread Patrice Colet
Patrice Colet a écrit : mami music a écrit : hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers, that can be refreshed every 500 msec. Im

Re: [PD] pd to webpage

2007-10-17 Thread Patrice Colet
mami music a écrit : Did you manage to make this system PD-PHP or not yet? I manage to use PHP for communicating between two computers that use pd. One computer is a video server, the other one is an interface client. Both allready communicates with OSCs protocol. I want the server to

Re: [PD] pd to webpage

2007-10-17 Thread tim
to see the updates... see http://www.timvets.net/software/pd_ncftpput_example.pd Tim mami music wrote: hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers

Re: [PD] pd to webpage

2007-10-17 Thread Martin Peach
mami music wrote: hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers, that can be refreshed every 500 msec. Im wondering how to create a webpage

Re: [PD] pd to webpage

2007-10-17 Thread mami music
2007/10/17, Martin Peach [EMAIL PROTECTED]: mami music wrote: hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers, that can be refreshed every 500

Re: [PD] pd to webpage

2007-10-17 Thread Hans-Christoph Steiner
On Oct 17, 2007, at 1:30 PM, Martin Peach wrote: mami music wrote: hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer numbers, that can be refreshed

Re: [PD] pd to webpage

2007-10-17 Thread Martin Peach
Hans-Christoph Steiner wrote: On Oct 17, 2007, at 1:30 PM, Martin Peach wrote: mami music wrote: hi i wanna show some data of a pd patch on a webpage, for monitoring remotely what is going on on the patch. It can have a latency when showing on the webpage. and data would be integrer

Re: [PD] pd to webpage

2007-10-17 Thread Martin Peach
Here's my unfinished attempt at a web server. It will send a file index.html to a browser. It uses the string patch to pd and the str object, which can handle ascii without pd interpreting it along the way. It may be possible to do it using other objects. The main problem is the detection of

Re: [PD] pd to webpage

2007-10-17 Thread marius schebella
seems like mrpeach is not fully included in pd-extended or at least [str] is missing. is this an abstraction or a library? marius. Martin Peach wrote: Here's my unfinished attempt at a web server. It will send a file index.html to a browser. It uses the string patch to pd and the str

Re: [PD] pd to webpage

2007-10-17 Thread Patrice Colet
hi! marius schebella a écrit : seems like mrpeach is not fully included in pd-extended or at least [str] is missing. is this an abstraction or a library? marius. this is a library available in cvs and compilation is working greatly, :) ___

Re: [PD] pd to webpage

2007-10-17 Thread Hans-Christoph Steiner
This is very cool, keep us posted on your progress! I am thinking of trying to write an IRC client in Pd. Then there could be an embedded IRC client in Pd-extended that is tied into the help system. You click a link on a help patch, it opens a chatroom and posts the context of the

Re: [PD] pd to webpage

2007-10-17 Thread Hans-Christoph Steiner
[str] is only included in 0.40.3 because it needs the string patch to pd to work. .hc On Oct 17, 2007, at 3:27 PM, marius schebella wrote: seems like mrpeach is not fully included in pd-extended or at least [str] is missing. is this an abstraction or a library? marius. Martin Peach