Re: [PD] routeOSC: how to distinguish messages addressed to a node from messages addressed to any descendant

2011-05-21 Thread Martin Peach
On 2011-05-21 18:10, Matteo Sisti Sette wrote: On 05/21/2011 10:39 PM, cyrille henry wrote: what about [routeOSC /foo/* /foo] ? That won't work. RouteOSC only matches one level at a time, meaning that [routeOSC /foo/bar] will never match anything (indeed it should issue a warning at creation

Re: [PD] routeOSC: how to distinguish messages addressed to a node from messages addressed to any descendant

2011-05-21 Thread Martin Peach
On 2011-05-21 19:21, Matteo Sisti Sette wrote: On 05/22/2011 12:44 AM, Martin Peach wrote: until [routeOSC] will consider a message without an address as equivalent to a message addressed to /. Yes I think that makes sense. But I think [routeOSC] should simply prefix an outgoing message

Re: [PD] udpsend broadcast was Re: 0.43 should still be a test version

2011-05-17 Thread Martin Peach
On 2011-05-16 17:36, Matteo Sisti Sette wrote: On 05/16/2011 11:21 PM, Martin wrote: 255.255.255.255. Where is it supposed to send that to? I doubt if any router would forward it to every machine on the internet. No, it is supposed to broadcast to the local network, exactly like x.x.x.255,

Re: [PD] pd-extended-0.43.1 win32

2011-05-13 Thread Martin Peach
On 2011-05-13 09:15, IOhannes m zmölnig wrote: pd-extended removed all objects from Pd-core, so you have to load the stdlib explicitely (forgot it's exact name but you should find it in the list archives or wait till hans replies to this email) Yes it's called vanilla and it has to be

Re: [PD] udpsend performance issue

2011-05-12 Thread Martin Peach
On 2011-05-12 07:59, matteo sisti sette wrote: Some follow-up on this: - By bundling the data into few large packets instead of many small packets (hence decreasing the overhead), indeed the blocking occurs much less frequently as Martin suggested, though it still occasionally occurs every once

Re: [PD] udpsend performance issue

2011-05-09 Thread Martin Peach
On 2011-05-09 01:45, Matteo Sisti Sette wrote: On 05/09/2011 04:54 AM, Martin Peach wrote: [udpsend] uses almost the same code as [netsend] to send the data. I guess the bottleneck is in the way you load the hundreds of messages into [udpsend]. Are you receiving one packet per message

Re: [PD] CVs

2011-05-08 Thread Martin Peach
On 2011-05-08 10:46, Mathieu Bouchard wrote: On Sat, 7 May 2011, Josh Moore wrote: I just got out of a long and heated argument with someone who claimed he was an EE and told me that digital synthesizers use CVs. What's CV ? Control Voltage. Analog synthesizers use it to control things

Re: [PD] udpsend performance issue

2011-05-08 Thread Martin Peach
On 2011-05-08 13:48, Matteo Sisti Sette wrote: Hi, If I send a few hundreds packed OSC messages with [udpsend], it blocks for about 100-200 milliseconds or more (I see the message udpsend blocked for xxx milliseconds in the console, and I notice the effects). I know that this is a lot of

Re: [PD] readanysf for windows? (again)

2011-04-28 Thread Martin Peach
This might be relevant here: http://sourceware.org/binutils/docs-2.21/ld/WIN32.html#WIN32 especially: If `--export-all-symbols' is not given explicitly on the command line, then the default auto-export behavior will be disabled if either of the following are true: A DEF file is used.

Re: [PD] Arduino, any feedback to help me choose the model?

2011-04-27 Thread Martin Peach
fiction, and guess what, i'm still plain real. Thank you all very much for your advice! Pierre 2011/4/16 Martin Peach martin.pe...@sympatico.ca mailto:martin.pe...@sympatico.ca On 2011-04-16 07:09, Pierre Massat wrote: Hi, I just ordered a Uno, i think it will suffice

Re: [PD] Arduino, any feedback to help me choose the model?

2011-04-16 Thread Martin Peach
On 2011-04-16 07:09, Pierre Massat wrote: Hi, I just ordered a Uno, i think it will suffice. Martin, I'd like to replace my pot with an optical sensor if it's quieter. Only i've never used one. How does it work? How do i put this in the pedal? I got a reflective sensor which consists of an

Re: [PD] Arduino, any feedback to help me choose the model?

2011-04-10 Thread Martin Peach
Probably the thing will read quieter if the pots are lower resistance. The data sheet for the atmega microcontroller used in the arduino says hat the impedance of the analog source should be less than 10kOhm. Also putting a .1uF capacitor from the analog pin to ground will smooth out glitchy

Re: [PD] Latest pd-extended 0.43 autobuild on WinXp

2011-04-02 Thread Martin Peach
So I installed the latest autobuilt pd-extended (Pd-0.43.0-extended-20110402-windowsxp-i386.exe) and I get this if I select log all: 'pd-gui' connecting to 'pd' on localhost 5400 ... -- done with main -- Default font: DejaVu Sans Mono vanilla: can't load

Re: [PD] Latest pd-extended 0.43 autobuild on WinXp

2011-04-02 Thread Martin Peach
on Windows yet. Sounds like the 'libdir' loader wasn't loaded first, that needs to be before everything. .hc On Apr 2, 2011, at 1:58 PM, Martin Peach wrote: So I installed the latest autobuilt pd-extended (Pd-0.43.0-extended-20110402-windowsxp-i386.exe) and I get this if I select log all: 'pd-gui

Re: [PD] Latest pd-extended 0.43 autobuild on WinXp

2011-04-01 Thread Martin Peach
On 2011-04-01 18:05, Hans-Christoph Steiner wrote: On Fri, 2011-04-01 at 19:03 +, martin.pe...@sympatico.ca wrote: It seems that the latest version of pd-extended from http://autobuild.puredata.info/auto-build/2011-04-01/ can't instantiate the internals, but the externals seem to work.

Re: [PD] The economics of Open source

2011-03-19 Thread Martin Peach
On 2011-03-19 15:34, Mathieu Bouchard wrote: Ok, so, basically, buggy software gets rewarded for requests to fix bugs. Bugless software is not rewarded : it does not pay. Therefore we are encouraged to put enough bugs in there so that we get money. Nevermind the high-reliability ideals. That

Re: [PD] Help parsing HTML with [httpget]

2011-03-05 Thread Martin Peach
It works fine for me. I recently added [httpreq] and [httpreceive] to the mrpeach stuff in svn, they make it easier to do http stuff. [httpreceive] outputs the status on a separate outlet so you could scan for the expires keyword to know when to make another request. Martin On 2011-03-05

Re: [PD] Reading and writing binary files

2011-02-27 Thread Martin Peach
On 2011-02-26 17:57, David wrote: Thanks. I think I'll try using the MrPeach external. I didn't realize that it was already installed (I'm using pd-extended). It seems to do what I want, and I don't have to install any other libraries. I have a question about [binfile] though, for either of you

Re: [PD] Reading and writing binary files

2011-02-27 Thread Martin Peach
On 2011-02-27 20:51, David wrote: Thanks for your help. It took me a while to figure out how 'list append' works, but I finally managed to get it working. I've attached the patch (intended to be used as an abstraction, invoked from another patch, which returns the data read from the file in a

Re: [PD] pure-data on gentoo; how to specify lib path?

2010-12-31 Thread Martin Peach
On 2010-12-31 13:01, Hans-Christoph Steiner wrote: I think your best bet is to use either [import] or [declare] to load the libraries your patch needs. Then the settings are embedded in the patch and will work on any Pd-extended install, rather than just the one you've customized. .hc On Dec

Re: [PD] Web browser?

2010-12-19 Thread Martin Peach
Look in moocow. Martin On 2010-12-19 17:45, Andrew Faraday wrote: This is fascinating, currently not running on my mac, however, missing [any2bytes] and [bytes2any] Does anyone know where I can find these two objects? Date: Sun, 19 Dec 2010 11:19:15 -0300 Subject: Re: [PD] Web browser?

Re: [PD] call for testers for L2Ork iteration of pd-extended (based on 0.42.x branch)

2010-12-05 Thread Martin Peach
On 2010-12-05 21:34, Ivica Ico Bukvic wrote: 3) 0.42.5 code-base is IMHO more friendly towards porting the entire thing to a different toolkit as all tcl/tk stuff is encapsulated into one (albeit ugly) big file. As such, I see it as a better springboard for such a transition. That's funny. I

Re: [PD] The Game of Life

2010-11-28 Thread Martin Peach
On 2010-11-28 13:51, Andrew Faraday wrote: Hey All Bit of an early Christmas present. It's a pure-data based, 16x16 version of Jon Conways Game of Life (http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). Perhaps the geekiest thing I've ever done. Would love to hear what you guys think of

Re: [PD] big soundfiles

2010-11-26 Thread Martin Peach
On 2010-11-26 04:04, Mathieu Bouchard wrote: Those internal floats are somewhat more precise than the printed floats, because pd doesn't print enough digits. ...and if you save your patch any floats in it will be printed out the same way so you end up with effectively about 24-bit floats

Re: [PD] chaos generatos

2010-11-12 Thread Martin Peach
On 2010-11-11 11:04, ronni montoya wrote: I was wondering if there are chaos or fractal equations number generators in pd? Check out bbogart/chaos in svn/trunk/externals; it doesn't seem to be part of pd-extended but the code is there. Martin

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 /

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 /,

Re: [PD] overdriven speaker

2010-10-21 Thread Martin Peach
A perfect speaker will reproduce the sound exactly by transforming the instantaneous voltage to a displacement in or out. That's called 'compliance' in the speaker biz. The ideal speaker has zero mass and is totally rigid. So nonlinearities will show up: 1 when the speaker is massive and can't

Re: [PD] [PD-dev] question about multithreaded externals in Pd

2010-10-01 Thread Martin Peach
I think maybe pthread_create(x-unsafe_t, NULL, (void *) pd_cwiid_pthreadForAudioUnfriendlyOperations, (void *)rPars); should be something like: pthread_create(x-unsafe_t, NULL, pd_cwiid_pthreadForAudioUnfriendlyOperations, (void *)rPars[this_thread]); since rPars can't be used by any

Re: [PD] Guitar distortion (Chebyshev?)

2010-09-12 Thread Martin Peach
On 2010-09-12 11:13, Mathieu Bouchard wrote: On Sun, 12 Sep 2010, Pierre Massat wrote: I m not trying to model an amp here, i m only interested in modeling a distortion unit. Ah, I forgot, did you try [expr~ tanh($v1)] ? At first I assumed that you wanted to go beyond that simple distorsion

Re: [PD] Guitar distortion (Chebyshev?)

2010-09-12 Thread Martin Peach
On 2010-09-12 12:05, Mathieu Bouchard wrote: On Sun, 12 Sep 2010, Martin Peach wrote: It's not the capacitors, it's the amplifier losing gain when it approaches the power supply. Yeah, but it seems to be a pattern similar to the one found in capacitors, because capacitor theory has exp(-x

Re: [PD] web client

2010-09-09 Thread Martin Peach
On 2010-09-09 18:39, Jordi Sala wrote: Hi list, I'd like to know if there is a web client object (or patch) for pd. The attached patches should work with pd-extended. Martin httpget.pd Description: application/puredata httpget-help.pd Description: application/puredata

Re: [PD] [FM Discuss] Portuguese translation of the PD manual

2010-08-14 Thread Martin Peach
On 2010-08-13 18:34, Mathieu Bouchard wrote: On Fri, 13 Aug 2010, Ildomar Gomes de Carvalho Junior wrote: A tradução não é exclusivamente para pessoas que não compreendem o Inglês, It's also a matter of feeling more at home, regardless of actual skill. I want to find a way to translate help

Re: [PD] exact meaning of netsend outlet

2010-08-14 Thread Martin Peach
On 2010-08-14 03:55, Peter Plessas wrote: please excuse me, I mixed things up when asking. I wanted to know what the outlet of netSEND really indicates. Ups, sorry! So rephrased: Does it indicate whether Pd was able to open a port through the OS? Yes. Does it indicate whether a (TCP)

Re: [PD] Issue with Gaussian Noise

2010-08-10 Thread Martin Peach
On 2010-08-10 04:32, Frank Barknecht wrote: Hi, I made two generators for Gaussian white noise, one using DSP, the other as message based version. Both use the same algorithm, but the histogram analysis of both shows a defect with the message version: The histogram has a visible valley around

Re: [PD] Formants in puredata : Problem to compile flext in Ubuntu lucyd

2010-07-07 Thread Martin Peach
linedicons...@gmail.com wrote: Hi! I need to use formants in realtime and I found : sms_peak based on flext. I doesnt found a binary for osx, or ubuntu so I start compiling. My first error for flext is : ~/pd-flext/flext$ sudo ./build.sh pd gcc build [sudo] password for marco: make -f

Re: [PD] compiling pd-extended on arch linux

2010-07-07 Thread Martin Peach
James Dunn wrote: Quoth dmotd, on 06/07/10 13:49: Seems like I just had to install pkg-config. It now finds the imagemagick library but fails with a new error: videoV4L2.cpp:389:31: error: ‘fstat’ was not declared in this scope videoV4L2.cpp:394:27: error: ‘S_ISCHR’ was not declared in this

Re: [PD] Playing and recording simultaneously

2010-07-05 Thread Martin Peach
Mathieu Bouchard wrote: On Sun, 4 Jul 2010, Martin Peach wrote: As long as they are on the same card, they will be in perfect sync at the clock level unless you have some really unusual hardware. This is because the same clock is used for A/D and D/A. Usually they are on the same chip

Re: [PD] Playing and recording simultaneously

2010-07-04 Thread Martin Peach
Henrique wrote: But, in order to the IR estimation be correct, there must be a synchronization between the clock frequencies of the: (1) D/A converter at the output generator and the (2) A/D converter on the input recorder. If the sampling ticks of these clocks are not (at least

Re: [PD] problem with arduino digital ins - Pduino-0.5beta8 / Firmata 2.1

2010-06-30 Thread Martin Peach
Roman Haefeli wrote: On Wed, 2010-06-30 at 14:12 +0200, Ingo Scherzinger wrote: Hi Roman, this solution is working also. So in this case it's not really necessary to change the firmata itself. Anyway, I would prefer to have this behaviour as the default behaviour, i.e. included in firmata. At

Re: [PD] send midi to another program in windows? (not with [midifile])

2010-06-30 Thread Martin Peach
João Pais wrote: Hi, my attempts to work with [midifile] didn't work, as something in the files is saved wrong, Any idea what is saved wrong? Martin ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] Midifile - define tempo?

2010-06-28 Thread Martin Peach
João Pais wrote: Hi, I wanted to record a midi file, with notes being entered by pd. First, midifile is the object to use, right? 2nd, I wanted to use another tempo, is it possible to edit that? Yes. The [metro] you use to step the [midifile] object determines the tempo. [midifile]

Re: [PD] compile comport object under linux

2010-06-20 Thread Martin Peach
manecante wrote: Hi, I can't find comport.pd_linux , using puredyne-9.11 with pd-extended-0.42. I DL pd source from svn but when trying to compile comport I get many errors (no such file or directory for: sys/time.h, fcntl.h, sys/ioctl.h, termios.h, unistd.h, glob.h, string.h, errno.h,

Re: [PD] object to campare symbols

2010-06-20 Thread Martin Peach
Ariane stolfi wrote: Hi, Is there objects like [== ] or [!= ] to compare symbols in pd-extended? theres a [strcomp] object or abstraction missing in the related_objects_from_other_libraries but I coudn't find mention to this object on google You can do [str compare] in pd-extended 0.42.5.

Re: [PD] dmx and pd

2010-06-18 Thread Martin Peach
You can definitely use the DMX USB pro with [comport]. I have a patch somewhere that I tested with a DMX dimmer. You basically need to send a header and the control values as a list of bytes. http://www.enttec.com/docs/dmx_usb_pro_api_spec.pdf has the protocol. If I find the patch I'll post it.

Re: [PD] dmx and pd

2010-06-18 Thread Martin Peach
Here's the patch. It's a bit messy but you can probably morph it into what you want. Martin Martin Peach wrote: You can definitely use the DMX USB pro with [comport]. I have a patch somewhere that I tested with a DMX dimmer. You basically need to send a header and the control values

[PD] strange error in console

2010-06-14 Thread Martin Peach
On today's Pd-extended 0.42.5-rc3 for Ubuntu lucid i386 I get this message if I open routeOSC-help: error: 'routeOSC-help.pd' is a deprecated name format for a help patch. Please rename to 'routeOSC-help-help.pd'! I can't find it in the source anywhere. Does anyone know where it's

Re: [PD] strange error in console

2010-06-14 Thread Martin Peach
Mathieu Bouchard wrote: On Mon, 14 Jun 2010, Martin Peach wrote: On today's Pd-extended 0.42.5-rc3 for Ubuntu lucid i386 I get this message if I open routeOSC-help: error: 'routeOSC-help.pd' is a deprecated name format for a help patch. Please rename to 'routeOSC-help-help.pd'! I can't

Re: [PD] strange error in console

2010-06-14 Thread Martin Peach
Hans-Christoph Steiner wrote: On Jun 14, 2010, at 3:15 PM, Martin Peach wrote: Mathieu Bouchard wrote: On Mon, 14 Jun 2010, Martin Peach wrote: On today's Pd-extended 0.42.5-rc3 for Ubuntu lucid i386 I get this message if I open routeOSC-help: error: 'routeOSC-help.pd' is a deprecated name

Re: [PD] pduino windoze

2010-06-11 Thread Martin Peach
Derek Holzer wrote: Quick question: what must one do to be able to use Pduino on windows? Is there a USB serial port driver that has to be installed? The same driver that Arduino needs, it's provided with the Arduino distribution in arduino-0018\drivers\FTDI USB Drivers. Martin

Re: [PD] plugin~ external

2010-06-11 Thread Martin Peach
Kim Cascone wrote: IOhannes m zmölnig wrote: On 06/11/2010 08:50 PM, Kim Cascone wrote: [print] = standard object ships with both Pd-vanilla and extended [gf_print] = print object shipped with the GridFlow libraries and _only_ called when [gf_print] is instantiated in a patch why

Re: [PD] finding index from table value

2010-06-10 Thread Martin Peach
Alexandre Porres wrote: hi folks, is there any easy and straightforward way to find what is the index, on a table, of some value? Like by sending to some object its value? Maybe [mrpeach/tabfind]? Martin ___ Pd-list@iem.at mailing list

Re: [PD] MIDI In-to-Out Latency

2010-06-06 Thread Martin Peach
cyrille henry wrote: but since you don't like this, you should : in pd / startup add in startup flags : -noaudio -audiobuf 0 -mididev 3 than : save all setting and it should work for next reboot... That's fine but what if you want to trigger sound with the MIDI input? I've been trying some

Re: [PD] MIDI In-to-Out Latency

2010-06-06 Thread Martin Peach
Jim Aikin wrote: On 6/6/2010 9:01 AM, cyrille henry wrote: i think the best is to change the property of the icon to start pd with the good flags, so that you can create many icon with differents flags. Windows 7 won't let me add flags to the command line for a shortcut on the desktop, so

Re: [PD] new patch position on windows xp

2010-06-01 Thread Martin Peach
Lorenzo wrote: Alas, I must use Windows Xp as well... Anyway I have switched since about two months to having the taskbar at the top of the screen, meaning that when I create a new patch it is placed at absolute 0,0 absolute with the title-bar behind the taskbar (even with always on top

Re: [PD] new patch position on windows xp

2010-06-01 Thread Martin Peach
Martin Peach wrote: Lorenzo wrote: Alas, I must use Windows Xp as well... Anyway I have switched since about two months to having the taskbar at the top of the screen, meaning that when I create a new patch it is placed at absolute 0,0 absolute with the title-bar behind the taskbar (even

Re: [PD] noise~ inlet?

2010-05-29 Thread Martin Peach
Matteo Sisti Sette wrote: Hi, Sorry for the stupid question, but does [noise~]'s inlet have any use? No. There is nothing in the code to handle anything arriving on that inlet. Also there is no way to change the random sequence -- it's the same every time. So with a teeny bit more code, the

Re: [PD] noise~ inlet?

2010-05-29 Thread Martin Peach
Matteo Sisti Sette wrote: Now, just out of curiosity: is there some reason why all dsp objects must have at least an inlet even if it is useless? [adc~] also has one inlet that I don't think accepts any method. They are instantiated with the parameter CLASS_DEFAULT instead of

Re: [PD] noise~ inlet?

2010-05-29 Thread Martin Peach
Mathieu Bouchard wrote: On Sat, 29 May 2010, Martin Peach wrote: So with a teeny bit more code, the inlet could potentially be used to initialize to a different starting point, but it would not change the sound, except for example if you were multiplying two [noise~]s. Every [noise

Re: [PD] wii controller

2010-05-28 Thread Martin Peach
Simon Cossar wrote: Hello list - I'm trying to control pd (0.41.4) with a wiimote and nunchuk. I'm routing the wiimote through Osculator, then using [import mrpeach] [udpreceive 9000] [unpackOSC] and a series of routeOSC objects. With Osculator running, the graphics in the main pd window slow

Re: [PD] missing objects in Pd Extended

2010-05-27 Thread Martin Peach
Ben Baker-Smith wrote: Well in the case of MrPeach and nsend I am actually missing the files. In the MrPeach directory I have got no tcpsocketserver.dll file (I have and can create other objects such as tcpserver, routeOSC, etc). The same thing happens for me with the objects you mentioned

Re: [PD] noise range?

2010-05-18 Thread Martin Peach
nate wrote: hello i'm trying to port an analog synth to pd. one of the parts in the rather confusing schematics of the synth requires a white noise generator with a range control. Not sure i understand it (or that it is a crucial bit of the synth for that matter), but if it means the amplitude

Re: [PD] Compressor in Pd

2010-05-18 Thread Martin Peach
chris clepper wrote: Unfortunately, DSP compression is absolutely horrid compared to analog boxes like an API 2500 or ADR Compex - let alone the old tube gear like a 176. Why do you think that is? What is missing in the digital version? Martin

Re: [PD] [unpackOSC] wrong packet crash

2010-05-13 Thread Martin Peach
that are supposedly able to control themselves. It must be one of the biggest security threats around. Martin Patrice Colet - 06 32 66 03 57 - martin peach martin.pe...@sympatico.ca a écrit : It should not crash Pd though, that's bad... ___ Pd

Re: [PD] [unpackOSC] wrong packet crash

2010-05-13 Thread Martin Peach
patko wrote: - Martin Peach martin.pe...@sympatico.ca a écrit : telling me, although a patch that reliably causes the crash would be nice to see. I've attached an archive containing the files for testing the crash it needs a python 3 interpreter or blender 2.5(, that should be easy

Re: [PD] OSCSerial for windows

2010-05-11 Thread Martin Peach
If you have a recent pd-extended [mrpeach/slipenc] and [slipdec] can be used to serialize an OSC packet. Martin Ricardo Dueñas Parada wrote: Hi, I am using an AVRmini board to pass data from several sensors to pd via OSC (USB), and I can do it on Linux with the objects pd_OSCSerial [1].

Re: [PD] [PD-announce] one over zed (a conformal function on the complex plane)

2010-05-10 Thread Martin Peach
Mathieu Bouchard wrote: On Sun, 9 May 2010, Mathieu Bouchard wrote: On Sun, 9 May 2010, Arif Driessen wrote: fractals! awesome! Hmmm, I hadn't thought of that before... but there may be a fractal dimension to this figure. Is the patch that created this lying around the woods of public

Re: [PD] [PD-announce] one over zed (a conformal function on the complex plane)

2010-05-10 Thread Martin Peach
Mathieu Bouchard wrote: On Mon, 10 May 2010, Martin Peach wrote: It's easier to see what's going on using the colourbar from hello-world.pd. But hello-world.pd is unrelated to moving pixels around like [#remap_image] does. [#remap_image] is like a giant [tabread] from outer space whereas

Re: [PD] Stable Pd-extended package for Ubuntu 10.04LTS?

2010-05-08 Thread Martin Peach
mark hadman wrote: Hi all, I'm wondering if there's a stable pd-extended available for Ubuntu 10.04 LTS yet. I've tried the lucid nightly build from 7th May (A couple of random crashes made me uninstall it pretty damn quick), and I've tried the repository (Jaunty version), which had

Re: [PD] pd-extended 0.42.5 source

2010-04-26 Thread Martin Peach
michael noble wrote: Call me crazy or lazy, but I can't seem to find a link or instructions to download source for pd-extended 0.42.5. I can find the nightly builds, and CVS for 0.41, but that's not what I'm looking for... Anyone able to enlighten me? It's all here:

Re: [PD] length in midifile

2010-04-25 Thread Martin Peach
PF wrote: i'm no expert in midi, but i want to send midi notes (and durations) from a .mid file to a synth of mine. i see the midifile help has a bunch of stuff for noteOn and noteOff events, but it's confusing to me. if anyone can clarify a bit i'd really appreciate that. [midifile] outputs

Re: [PD] several distributions populate array

2010-04-22 Thread Martin Peach
João Pais wrote: Hi, before I start programming wanted to ask: does anyone knows / has made any patches to populate an array with values? something like make 10 values between X and Y, being at a constant rate, or following an exponential curve, or with (more or less) random deviations, ...

Re: [PD] oscx help patches?

2010-04-21 Thread Martin Peach
IOhannes m zmoelnig wrote: PPS: indeed there is no help patch for [unpackOSC]! however, you should be able to understand the object from unpackOSCstream-help.pd; i guess martin would gladly include a simple help if you could provide one. The help patch for [unpackOSC] is the same as for

Re: [PD] how to type more than one space in GEM with [text2d] - [textfile] output?

2010-04-18 Thread Martin Peach
Ingo Scherzinger wrote: Is there an object that can read textfiles (or any other file type) that includes spaces and can output these spaces (as something) so I can convert them to ascii 32 or ascii 160? [mrpeach/binfile] will output raw bytes from any file, so spaces in a text file will

Re: [PD] pd.exe as a virus

2010-04-13 Thread Martin Peach
Maybe it's because Pd opens a network connection to the wish application on the same machine and some antivirus programs think that's suspect, since for all they know the other program could be doing something nasty; they should really check that the other program is networking to the outside

Re: [PD] pd and multi-core processors

2010-04-09 Thread Martin Peach
Matteo Sisti Sette wrote: I wonder if it would make sense to do the same with 2 pd instances doing audio, and exchange audio between them. Maybe I could try that with Jack. Why isn't there a [netsend~] and a [netreceive~] object? They are in svn but don't get compiled in the nightly

Re: [PD] Displaying as two digits

2010-04-07 Thread Martin Peach
Frank Barknecht wrote: Internally Pd uses the g type a lot to format numbers. ..which is why Pd's floats often have less precision than float: A full-precision float is printed with the 'g' specifier when a patch is saved, then read back in with the reduced precision, so something like

Re: [PD] Create MIDI Message - Launchpad Interaction

2010-03-07 Thread Martin Peach
Achim Christian Bornhöft wrote: How can I create three bytes raw midi messages in the following forms to interact with my launchpad from within PD? 128, Key, Velocity That's a note off message, are you sure you don't mean 144? Then you could use a message with two values like: [key

Re: [PD] pdstring? (was: http client native in pd)

2010-03-06 Thread Martin Peach
They might work as: [moocow/any2bytes], [moocow/bytes2any], [list prepend set]. Martin Chipp Spam wrote: Thanks for the examples with httpget ! Had a problem running the example: any2bytes ... couldn't create bytes2any ... couldn't create prepend set ... couldn't create (Running latest

Re: [PD] http client native in pd?

2010-02-27 Thread Martin Peach
Look at [mrpeach/tcpclient]. The help file does that. You need to format the strings as lists of bytes, probably tables are the best way to do that, although if you have Pd-extended the [mrpeach/str tolist] object will do it. Or just use text files with the request strings. Then load the

Re: [PD] pduino 0.5 servofirmata pd crash

2010-02-22 Thread Martin Peach
Yes you definitely need to power the servo from a separate source of 5V. The servo pulse can be connected directly from the arduino pwm pin as long as the grounds of all the components are connected to the same place. Martin Ricardo Brazileiro wrote: I would like to see your video with

Re: [PD] triggering audio

2010-02-17 Thread Martin Peach
Maybe try the attached patch and look up the help for the objects in it to see what they can do. Martin Josh Lawrence wrote: On Tue, Feb 16, 2010 at 2:06 PM, Derek Holzer de...@umatic.nl wrote: Hi Josh, looks like you haven't gotten to the later AUDIO TUTORIALS chapters: if I can beg the

Re: [PD] vertical column of msg boxes

2010-02-10 Thread Martin Peach
I prefer to line them up on a 45 degree line. See tcpclient-help for example. That way you can see the whole message box. Another idea would be to make sure the lines are always drawn _behind_ the boxes. Martin Jonathan Wilkes wrote: Hello, I've been doing a lot of work with the help

Re: [PD] Http request

2010-02-06 Thread Martin Peach
You could use [mrpeach/tcpclient] for that but you need to give it the ascii code. See the tcpclient-help patch. Martin jim wrote: Is there an external for sending data to and from a web server ie implements POST and GET methods? Thanks, Jim ___

Re: [PD] [PD-dev] midiout / sysex on windows

2010-02-03 Thread Martin Peach
Yes, why not just send a list though? It seems that in WinXP [midiout] sends 247(start sysex) followed by 240(end sysex), the intervening message doesn't get transmitted. Also if the message contains numbers 127 then more bytes get transmitted, not good. Also as lists seem to be easier to

Re: [PD] Floats and negative numbers over OSC

2010-01-31 Thread Martin Peach
PSPunch wrote: Hi Martin, Thank you for your response. I am attaching the patch used to produce the following results. This was tested on Pd version 0.41.4-extended, running on WinXP SP3. The OSC data were sent by GlovePIE running the following code. --- SendOSC(127.0.0.1, 9997,

Re: [PD] Floats and negative numbers over OSC

2010-01-30 Thread Martin Peach
PSPunch wrote: Hi Calude, I don't know if mrpeach osc and net objects work on Windows, but if they do they should be preferred to the OSCx objects. (snip) OSCx library is old, buggy, unmaintained, broken I've tried the two libraries prior to my post. They both work well on Windows to

Re: [PD] receiving data bytewise via UDP

2009-12-19 Thread Martin Peach
[udpreceive] outputs received UDP packets as a list of bytes. It's in pd-extended or you can get it from svn at http://pure-data.svn.sourceforge.net/viewvc/pure-data/trunk/externals/mrpeach/net/ and compile it yourself. For pd-extended you might need to add mrpeach to your path in pd or else

Re: [PD] FT232 and PD (OSX)

2009-12-07 Thread Martin Peach
The Arduino uses the FT232 or something just like it. You need to install drivers for it. They are included with the Arduino software. Martin Felix Obée wrote: Hello together, this is my first post to this list, so please take it easy on me if I missed some point or my problem is trivial.

Re: [PD] Very large patches unstable?

2009-12-02 Thread Martin Peach
Matteo Sisti Sette wrote: IOhannes m zmoelnig escribió: hmm, so what is your suggestion to solve the problem? Unfortunately I am not a C++ developer so I cannot study the source code and give practical, specific, useful suggestions. The only suggestions I can give are the obvious ones: -

Re: [PD] Inconsistent creation in some objects

2009-11-18 Thread Martin Peach
IOhannes m zmölnig wrote: somewhat related is the question of system exclusive ressources (e.g. a port for [netreceive]). i find it highly frustrating that all of the network server objects will plainly refuse to instantiate if they cannot allocate the given port. i would very much appreciate,

Re: [PD] midifile ... in reverse

2009-11-03 Thread Martin Peach
mark edward grimm wrote: Is is possible to play a midifile in reverse with [midifile]? Something I would think would work [metro] | [f]x[- 1] | [$1{ doesn't seems to work right unless i need a [t f b] ... but that doesn't seem to work very well either. Don't forget to start at the

Re: [PD] Arduino/Pduino/Accelerometer problem

2009-11-01 Thread Martin Peach
It should work with the [comport] object. You need on the Arduino to set analog 4 and 5 as digital outputs (I think they are digital 17 18). Set the pin connected to the accelerometer module's 5V pin HIGH and the Gnd pin LOW. That will provide enough current for the accelerometer to work.

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 ___

Re: [PD] very small form-factor PC for running PD

2009-10-22 Thread Martin Peach
Martin Dupras wrote: For a project I'm working on, I need a very small computer capable or running PD in an enclosure ideally smaller than 20cmx15cm. It doesn't need to have a screen, but it needs to have at least two USB ports and be able to be run on 12v DC or lower. Has anyone come across

Re: [PD] vanilla [serial] object on Windows

2009-10-12 Thread Martin Peach
Hans-Christoph Steiner wrote: Does anyone ever using the [serial] object in Windows that is in Pd-vanilla? Its currently implemented in Tcl so I am wondering what to do with it in the new GUI. Well it has significantly less functionality than [comport] (output only, no way to change

Re: [PD] packOSC TimeTag realtime vs. logicaltime

2009-10-08 Thread Martin Peach
Wolfgang Jäger wrote: Hello, I'm using a combination of [pack~] [packOSC] - transmission(UDP) - [unpackOSC] and a modified version of [unpack~] to send Audio over OSC. The OSC packages are sent as Bundles so a TimeTag is generated at the sender's side. I extended the [unpackOSC] object with

Re: [PD] pd.lib

2009-09-27 Thread Martin Peach
Hans-Christoph Steiner wrote: On Sep 24, 2009, at 8:47 AM, Martin Peach wrote: bra...@subnet.at wrote: Hi can anybody help me to find pd.lib? It's in the pd/bin folder of Miller's Windows versions. It would be nice if it (or at least a list of exported symbols) was included

Re: [PD] pd.lib

2009-09-24 Thread Martin Peach
bra...@subnet.at wrote: Hi can anybody help me to find pd.lib? It's in the pd/bin folder of Miller's Windows versions. It would be nice if it (or at least a list of exported symbols) was included in the autobuilds for Windows but it isn't, I guess because MinGW and Cygwin don't require it

Re: [PD] [pd REFERENCE] format [was: Re: Pd META: Author/Help Patch Authors]

2009-09-05 Thread Martin Peach
Jonathan Wilkes wrote: I've been assuming that one of the aims of tags (i.e., keywords) is that there would be a search window in the browser so you can search for relevant help patches/tutorial patches/ etc. Or maybe an actual patch, since Hans has said that the keywords should be parsable

<    1   2   3   4   5   6   >