Re: [PD] VST

2010-05-26 Thread David Schaffer
Hi, get this: https://svn.g.org/ext/trunk/vst/pd/vst~-help.pd It should get you started. As for the GUI of your VST, it doesn't always work for me either, but, as you'll notice, you don't actually need it to interact with your vst. Good luck! http://www.flickr.com/photos/schafferdavid/

[PD] keyboard pedal (yamaha fc4)

2010-05-26 Thread Jaime Oliver
Has anyone ever tried (or has one with which they could try) to connect one of these: http://www.amazon.com/Yamaha-FC4-Piano-Style-Pedal/dp/B0002F52EW fc4 pedals into the line/mic in of a sound card? It has this 1/4 inch jack and perhaps one could get a sample accurate expression pedal for

[PD] Pd on Maemo N900

2010-05-26 Thread Koray Tahiroglu
I finally made Pd-anywhere (PDa) to work on Maemo N900, there is still a problem with the audio (device), I guess mostly it is libesd, but first I will try to work on compiling Pd-vanilla, as most of the dependencies are already compiled. I will document it later if I have a success in audio

Re: [PD] loading an .aif file into an array

2010-05-26 Thread IOhannes m zmoelnig
On 2010-05-26 03:33, Mathieu Bouchard wrote: On Tue, 25 May 2010, Dan Wilcox wrote: In this case, you'd use [camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [rc-filename] | [read -resize $1 Bajo woops, sorry. I didn't put the table name separately (ouch) that's why its called

Re: [PD] Pd on Maemo N900

2010-05-26 Thread Olivier Heinry
Hello Koray, starting pd from a chrooted debian results in the same (no audio) be it jack or alsa. ++ OH Koray Tahiroglu wrote: I finally made Pd-anywhere (PDa) to work on Maemo N900, there is still a problem with the audio (device), I guess mostly it is libesd, but first I will try to

Re: [PD] Streaming GEM Visuals

2010-05-26 Thread IOhannes m zmoelnig
On 2010-05-25 20:50, Jack wrote: I guess, there is also pdgst, but i never use it. IOhannes, is there a problem with the SVN repository ? I try with this adress : https://svn.umlaeute.mur.at/svnroot/zmoelnig/projects/pdgst/ but get svn: Could not open the requested SVN filesystem Any ideas ?

Re: [PD] keyboard pedal (yamaha fc4)

2010-05-26 Thread patko
hello, I'd rather try with an arduino or to connect the pedal to an usb mouse click or a keyboard key, this pedal shouldn't generate a signal. I's just a switch where when the pedal is not pressed the tip and ring are shorted. Patrice Colet - 06 32 66 03 57 - Jaime Oliver

[PD] netreceive and XMLHttpRequest

2010-05-26 Thread Lorenzo
Hi list, Anyone ever managed to connect to Pd (on localhost) via XMLHttpRequest froma web page? If not any web development guru who has any idea? Lorenzo. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] loading an .aif file into an array

2010-05-26 Thread Mathieu Bouchard
On Wed, 26 May 2010, IOhannes m zmoelnig wrote: On 2010-05-26 03:33, Mathieu Bouchard wrote: On Tue, 25 May 2010, Dan Wilcox wrote: In this case, you'd use [camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [rc-filename] | [read -resize $1 Bajo woops, sorry. I didn't put the table name

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread patko
- IOhannes m zmoelnig zmoel...@iem.at a écrit : On 2010-05-26 13:15, patko wrote: error: soundfiler_read: truncated to 2000 elements 2000 is the maxsize argument so what's the problem? I might add several other algorithms to avoid this, like using a temporary table, but

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread IOhannes m zmoelnig
On 2010-05-26 15:19, patko wrote: - IOhannes m zmoelnig zmoel...@iem.at a écrit : On 2010-05-26 13:15, patko wrote: error: soundfiler_read: truncated to 2000 elements 2000 is the maxsize argument so what's the problem? In other words, is there a way to do it (extract a

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread IOhannes m zmoelnig
On 2010-05-26 13:15, patko wrote: hello, [soundfiler] doesn't seem to reconize the option -nframes, or I do not understand what it stands for. probably because -nframes is the maximum number to write and you are trying to read? fgmads IOhannes smime.p7s Description: S/MIME

[PD] [Gem][part_source] fill a volume with particles

2010-05-26 Thread patko
I'd like to draw a volume (font characters if possible) with using particles, and looking for several options maybe someone has ever worked on this? A first option would be about using a picture with the 2D volume drawn with black pixels and using pix_data to get pixel coordinates for

Re: [PD] netreceive and XMLHttpRequest

2010-05-26 Thread IOhannes m zmoelnig
On 2010-05-26 12:53, Lorenzo wrote: Hi list, Anyone ever managed to connect to Pd (on localhost) via XMLHttpRequest froma web page? [netreceive] only speaks FUDI; if you want to use XMLHttpRequest, you have to make XMLHttpRequest output a FUDI conformant message (which is probably not so

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread patko
- IOhannes m zmoelnig zmoel...@iem.at a écrit : anyhow, you don't need to specify the maxsize; if your table is small enough (aka: too small) Pd will silently drop the other samples. i do: [table bar 44100] [read -skip 88200 foo.wav bar( | [soundfiler] and it will store an

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread Mathieu Bouchard
On Wed, 26 May 2010, patko wrote: In other words, is there a way to do it (extract a sample from a soundfile) without getting error messages? I don't know, perhaps : [#in grid foo.wav, headerless 64, type int16, seek_byte 23456, endian little] provided you know the byte-position of it. This

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread Mathieu Bouchard
On Wed, 26 May 2010, Mathieu Bouchard wrote: [#in grid foo.wav, headerless 64, type int16, seek_byte 23456, endian little] typo... that's been , cast int16 for a while, no type method anymore. _ _ __ ___ _ _ _ ... | Mathieu Bouchard, Montréal,

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread patko
- Mathieu Bouchard ma...@artengine.ca a écrit : On Wed, 26 May 2010, Mathieu Bouchard wrote: [#in grid foo.wav, headerless 64, type int16, seek_byte 23456, endian little] typo... that's been , cast int16 for a while, no type method anymore. allright, I might use this for some

[PD] pd-extended and paths

2010-05-26 Thread ydego...@gmail.com
ola, just noticed that a recent build on karmic, the paths to pdp and pidip are not included in the paths list, and so it cannot find the pdp abstractions. salaam, sevy ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] Test for html documentation from *-help.pd file

2010-05-26 Thread Jack
Hello, Le mercredi 26 mai 2010 à 11:39 -0400, Mathieu Bouchard a écrit : On Thu, 20 May 2010, Jack wrote: Here two screenshots from a patch 'rectangle-FR-help.pd' (for help in french about [rectangle] from GEM) and its 'automatic' equivalent in PHP/HTML. My question is : how do you

Re: [PD] [soundfiler] -nframes not working, -maxsize weird behaving

2010-05-26 Thread patko
- IOhannes m zmoelnig zmoel...@iem.at a écrit : probably because -nframes is the maximum number to write and you are trying to read? oh yes, I'm trying to read, deaf, dumb and blind, :) ___ Pd-list@iem.at mailing list UNSUBSCRIBE and