Re: [PD] Raspberry Pi USB2 audio fixed (apparently)

2013-07-04 Thread Pierre Massat
OK. For your information, pulseaudio doesn't come with the new version of Raspbian apparently (I couldn't remove it cause it wasn't there !). No idea why. Pd seems to work a little bit with my soundcard, but after a couple of seconds everything freezes. I'll try with no gui in the coming days.

[PD] Extended view toolkit: texture coordinate

2013-07-04 Thread Husk 00
Hi Peter and list, I finally had time to explore extended view toolkit and it's really working well...congratulations! There is something still I miss: how the texture coordinates works. What units do they uses? How do I relate one projection panel to another to share content between them? Let's

Re: [PD] l2ork: SSSAD loads but doesn't save presets

2013-07-04 Thread András Murányi
[...] [datastore] however, is still part of s-abstractions (it saves a single state to a subpatch), and it doesn't work here. I tried datastore-help.pd and it saves an empty state. What's interesting, is that if I try it while my other big patch is open, it consistently triggers a segfault.

Re: [PD] Extended view toolkit: texture coordinate

2013-07-04 Thread Peter Venus
Am 04.07.13 11:47, schrieb Husk 00: Hi Peter and list, Hi Husk I finally had time to explore extended view toolkit and it's really working well...congratulations! There is something still I miss: how the texture coordinates works. What units do they uses? The units used for

[PD] phasor~: change freq on wraparound

2013-07-04 Thread Orm Finnendahl
Hi List, sorry if I'm missing the obvious: I'd like to implement a phasor~, which only allows its frequency to be changed on wraparound. Using a samphold~ for that purpose connected to the outlet and inlet of the phasor~ doesn't work as this creates a dsp loop. I prefer a pd vanilla solution

Re: [PD] PMPD

2013-07-04 Thread Cyrille Henry
hello, pmpd used to be a lib, so creating a pmpd object load the lib. then, it have been change to fit the libdir format. So you have to use declare -path pmpd in order to use pmpd. (or something similar) if you want the pmpd object (part of the pmpd libdir), you need a version that is less

Re: [PD] phasor~: change freq on wraparound

2013-07-04 Thread Miller Puckette
that's the loop~ object in extra. cheers Miller On Thu, Jul 04, 2013 at 09:20:27PM +0200, Orm Finnendahl wrote: Hi List, sorry if I'm missing the obvious: I'd like to implement a phasor~, which only allows its frequency to be changed on wraparound. Using a samphold~ for that purpose

[PD] store value of any type

2013-07-04 Thread yvan volochine
hi all, I'd like to store a value which can be of any type but I don't remember if that's even possible.. something like [value foo] but that would work for integer, list, or anything else like for [foo bar 123( is there a vanilla object for that? cheers, y -- http://yvanvolochine.com

Re: [PD] store value of any type

2013-07-04 Thread Miller Puckette
If it's just local, the list object will do it (floats and symbols are just one-element lists). If you want something that (like 'value') can be accessed by name or pointer elsewhere in the patch, you might want the text object (in git repo, upcoming for version 0.45). If you're insteested in

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
hi Miller, If it's just local, the list object will do it (floats and symbols are just one-element lists). If you want something that (like 'value') can be accessed by name or pointer elsewhere in the patch, you might want the text object (in git repo, upcoming for version 0.45). If you're

Re: [PD] store value of any type

2013-07-04 Thread Lorenzo Sutton
Hi, On 04/07/13 21:50, yvan volochine wrote: hi all, I'd like to store a value Does that mean only within the scope of your session (then [list] should do..), or even through patch opening/closing? In this second case some message manipulation trickery with [set( and [add2( could work

Re: [PD] store value of any type

2013-07-04 Thread Miller Puckette
It might be fixed. I use make -f makefile.gnu from pd/src to avoice all the automake horror, and so had allowed the automake to get out of sync witht he source - Iohannes patched that so things migth be back to normal with automake too by now. cheers M On Thu, Jul 04, 2013 at 10:08:36PM +0200,

Re: [PD] phasor~: change freq on wraparound

2013-07-04 Thread Alexandre Torres Porres
I guess [loop~] doesn't solve what Orm wants, because it automatically changes the frequency and also complains about a dsp loop if you try to solve it with [samphold~] cheers 2013/7/4 Miller Puckette m...@ucsd.edu that's the loop~ object in extra. cheers Miller On Thu, Jul 04, 2013 at

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 22:23, Miller Puckette wrote: It might be fixed. I use make -f makefile.gnu from pd/src to avoice all the automake horror, and so had allowed the automake to get out of sync witht he source - Iohannes patched that so things migth be back to normal with automake too by now. it's

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 22:54, Miller Puckette wrote: Relly - you can make a [text] object but help comes up empty? There should be a file doc/5.reference/text-object-help.pd ... nope, trying to open its help gives me: sorry, couldn't find help patch for text-object.pd and that might be because: $

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 22:13, Lorenzo Sutton wrote: Does that mean only within the scope of your session (then [list] should do..), or even through patch opening/closing? yep [list] is the way to go.. thanks! y -- http://yvanvolochine.com http://soundcloud.com/yvanvolochine

Re: [PD] store value of any type

2013-07-04 Thread Miller Puckette
Aha... I never 'make install' myself - I'd better go look at that. Anyhow I think it shoud have been 'make -f makefile.gnu install' instead... cheers M On Thu, Jul 04, 2013 at 10:56:58PM +0200, yvan volochine wrote: On 04/07/13 22:54, Miller Puckette wrote: Relly - you can make a [text] object

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 23:08, Miller Puckette wrote: Aha... I never 'make install' myself - I'd better go look at that. Anyhow I think it shoud have been 'make -f makefile.gnu install' instead... yes this works.. I'll give [text] a try, thanks! maybe it's worth updating INSTALL.txt with your

Re: [PD] GOP text field / symbol which is resizeable?

2013-07-04 Thread Ivica Bukvic
On Jul 3, 2013 7:09 PM, Jonathan Wilkes jancs...@yahoo.com wrote: On 07/03/2013 04:31 AM, Roman Haefeli wrote: On Wed, 2013-07-03 at 03:56 -0400, Ivica Bukvic wrote: On Jul 3, 2013 1:38 AM, Roman Haefeli reduz...@gmail.com wrote: On Die, 2013-07-02 at 19:15 -0400, Ivica Ico Bukvic wrote:

Re: [PD] phasor~: change freq on wraparound

2013-07-04 Thread Roman Haefeli
On Don, 2013-07-04 at 21:20 +0200, Orm Finnendahl wrote: Hi List, sorry if I'm missing the obvious: I'd like to implement a phasor~, which only allows its frequency to be changed on wraparound. Using a samphold~ for that purpose connected to the outlet and inlet of the phasor~ doesn't work