Re: [PD] KMI SoftStep foot controller?

2014-03-09 Thread Simon Wise
On 09/03/14 02:58, Jonghyun Kim wrote: For OSC connection, you can also [netsend] with tcp, [netsend -u] with udp My experience was [netsend] is a little better than others. Ok ... for me [packOSC] didn't work with [netsend], I didn't investigate why but just used [udpsend] instead. Simon

Re: [PD] KMI SoftStep foot controller?

2014-03-09 Thread Roman Haefeli
On Son, 2014-03-09 at 22:52 +1100, Simon Wise wrote: On 09/03/14 02:58, Jonghyun Kim wrote: For OSC connection, you can also [netsend] with tcp, [netsend -u] with udp My experience was [netsend] is a little better than others. Ok ... for me [packOSC] didn't work with [netsend], I didn't

[PD] 100k lines of code (was libpd separating gui from core)

2014-03-09 Thread me.grimm
Hi Miller, I know you probably have more pressing problems but it would be nice to get something like [getdir] in vanilla before you hit those 100k lines of code OR 50 years are up :) I know you have been bugged in the past but I just wanted to throw it in again in case I could put some

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Alexandre Torres Porres
As far as Vanilla goes it does seem like a great solution. Thanks a lot for that, seems to do the trick! But was really hoping for or even asking for a [peakenv~] like object. I didn't find anything and I thought I wouldn't be missing it if there was, but came here to ask anyway. Maybe an

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Miller Puckette
Hi all - I've been wanting to add this as an option to env~. Unfortunately the last time I thought carefully about it I ended up geting stuck in design decisions I don't know how to make. But I'll get back to it someday! cheers Miller On Sun, Mar 09, 2014 at 12:23:15PM -0300, Alexandre Torres

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Roman Haefeli
On Son, 2014-03-09 at 12:23 -0300, Alexandre Torres Porres wrote: As far as Vanilla goes it does seem like a great solution. Thanks a lot for that, seems to do the trick! But was really hoping for or even asking for a [peakenv~] like object. Why does it have to be an extra class and why

[PD] udoo board sound issues

2014-03-09 Thread Simon Iten
hey list, does anybody that uses an udoo board have any recommendations on a usb-soundcard? should be very compact. i tried a cheap one from dx and i could not get any good results (loads of xruns even with periods 3 and 1024 and up frames in qjackctl) this is on the ubuntu version from udoo.

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Miller Puckette
By the way - I just looked, and you can save a great deal of trouble using the array max object (new in Pd 0.25) - no need for 'until' horror. (just put the abs~ of the signal into the table). But env~ seems incomplete to me if it's only going to compute RMS. cheers M On Sun, Mar 09, 2014 at

Re: [PD] udoo board sound issues

2014-03-09 Thread Miller Puckette
H iSimon - I haven't tried any but the built-in yet but I have a few USB interfaces around here that I can try. I'm about to go on an intense trip but should be able to do some tests when I get back, assuming nobody else has figured this out first. cheers Miller On Sun, Mar 09, 2014 at

Re: [PD] udoo board sound issues

2014-03-09 Thread Simon Iten
hi miller fantastic, thanks On 09 Mar 2014, at 22:07, Miller Puckette m...@ucsd.edu wrote: H iSimon - I haven't tried any but the built-in yet but I have a few USB interfaces around here that I can try. I'm about to go on an intense trip but should be able to do some tests when I get

Re: [PD] udoo board sound issues

2014-03-09 Thread Dan Wilcox
I've tried my both Roland Edirol UA-25 UA-25EX and both work great. The dedicated USB controller makes these guys work as compared to an RPI where I can't get full duplex without tons of dropouts. I'm using a Linaro install which boots to the console and runs the PD through scripting. The

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Roman Haefeli
On Son, 2014-03-09 at 14:05 -0700, Miller Puckette wrote: By the way - I just looked, and you can save a great deal of trouble using the array max object (new in Pd 0.25) You mean 0.45, I guess(?) - no need for 'until' horror. Oh, that is great! Thanks for the reminder, I haven't looked at

Re: [PD] Rewriting a unified phasor / metro object for reading tables

2014-03-09 Thread Roman Haefeli
(I believe this might rather belong to pd-list instead of pd-dev) On Don, 2014-03-06 at 18:56 -0500, me.grimm wrote: Roman, wrapping points. The only drawback compared to [phasor~] is that the latter allows to control the frequency with a signal and the [metro]/[vline~] based phasor

[PD] change array graph size

2014-03-09 Thread João Pais
Hello, I wanted to change the graph canvas of an array, but I can't find the way of doing it. If I have an array called array1, to where should I send a coords message? Does it work like a normal GOP? Thanks, jmmmp ___ Pd-list@iem.at mailing list

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Alexandre Torres Porres
env~ seems incomplete to me if it's only going to compute RMS. Glad you feel how I do :) But wondering where you'd be stuck at, seems like something not too complicated. Anyway, waiting for it someday ;) Why not an abstraction in my point of view? Well, looks kinda cumbersome for that

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Chris Clepper
On Sun, Mar 9, 2014 at 5:05 PM, Miller Puckette m...@ucsd.edu wrote: But env~ seems incomplete to me if it's only going to compute RMS. Can we get the values in dBFS, please? Chris ___ Pd-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] Peak Level detect in Vanilla

2014-03-09 Thread Alexandre Torres Porres
hmm, that's an idea for another built-in option, so it's completely compatible to [vu] right out of the box :) 2014-03-09 23:35 GMT-03:00 Chris Clepper cgclep...@gmail.com: On Sun, Mar 9, 2014 at 5:05 PM, Miller Puckette m...@ucsd.edu wrote: But env~ seems incomplete to me if it's only

Re: [PD] change array graph size

2014-03-09 Thread Jonathan Wilkes
On 03/09/2014 08:15 PM, João Pais wrote: Hello, I wanted to change the graph canvas of an array, but I can't find the way of doing it. If I have an array called array1, to where should I send a coords message? Does it work like a normal GOP? The graph is named graph$n, where $n is incremented