Re: [PD] zexy/wrap for audio

2015-05-15 Thread Cyrille Henry
Le 16/05/2015 00:24, Alexandre Torres Porres a écrit : phasewrap~ wraps a signal between -pi and pi wrap~ wraps between 0 and 1 so none of them behaves like zexy/wrap, which can wrap between any given range. diference is only very simple math. see attachment. cheers c cheers 2015-05-15

Re: [PD] zexy/wrap for audio

2015-05-15 Thread Alexandre Torres Porres
oops, this one instead [expr~ if($v1 + 1 < 0, 2 - fmod(abs($v1 + 1), 2), fmod($v1 + 1, 2)) - 1] 2015-05-15 23:52 GMT-03:00 Alexandre Torres Porres : > well, it seems there's none, so I'm using epxr~ > > this will wrap between -1 and 1, what I needed now. > > [expr~ if($v1 + 1 < 0, 2 - fmod(abs($

Re: [PD] zexy/wrap for audio

2015-05-15 Thread Alexandre Torres Porres
well, it seems there's none, so I'm using epxr~ this will wrap between -1 and 1, what I needed now. [expr~ if($v1 + 1 < 0, 2 - fmod(abs($v1 + 1), 2), fmod($v1, 2)) - 1] cheers 2015-05-15 19:34 GMT-03:00 Alexandre Torres Porres : > by the way, that'd be also like the [mod] object, but for float

Re: [PD] zexy/wrap for audio

2015-05-15 Thread Alexandre Torres Porres
by the way, that'd be also like the [mod] object, but for floats and audio. 2015-05-15 19:24 GMT-03:00 Alexandre Torres Porres : > phasewrap~ wraps a signal between -pi and pi > wrap~ wraps between 0 and 1 > > so none of them behaves like zexy/wrap, which can wrap between any given > range. > > c

[PD] Fwd: Error trying to create folders or uploading files at pd.info

2015-05-15 Thread oscar pablo di liscia
Attemping to create a folder in my page at puredata.info I received the following error message. What I am doing wrong? I`ve got no answer from pdmeister so far. Mensaje de Error *!* The action against the *folder.2015-05-13.9108981052* object could not be carried out. One of the following constr

Re: [PD] zexy/wrap for audio

2015-05-15 Thread Alexandre Torres Porres
phasewrap~ wraps a signal between -pi and pi wrap~ wraps between 0 and 1 so none of them behaves like zexy/wrap, which can wrap between any given range. cheers 2015-05-15 18:31 GMT-03:00 Cyrille Henry : > wrap~ from vanilla > cheers > c > > > Le 15/05/2015 22:37, Alexandre Torres Porres a écrit

Re: [PD] zexy/wrap for audio

2015-05-15 Thread Cyrille Henry
wrap~ from vanilla cheers c Le 15/05/2015 22:37, Alexandre Torres Porres a écrit : howdy, looking for a zexy/wrap like object that works for audio, hints? thanks ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lis

Re: [PD] zexy/wrap for audio

2015-05-15 Thread Fred Jan Kraan
cyclone/phasewrap~ ? Fred Jan On 2015-05-15 10:37 PM, Alexandre Torres Porres wrote: howdy, looking for a zexy/wrap like object that works for audio, hints? thanks ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://l

[PD] zexy/wrap for audio

2015-05-15 Thread Alexandre Torres Porres
howdy, looking for a zexy/wrap like object that works for audio, hints? thanks ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] downsampling with [block~] causing artifacts

2015-05-15 Thread Alexandre Torres Porres
> You have a waveform with lots of little square steps in it. And why is that? Moreover, isn't that kinda like having less bit resolution? cheers 2015-05-15 14:51 GMT-03:00 Martin Peach : > You have a waveform with lots of little square steps in it. Those steps > contain high frequencies in the

Re: [PD] hardcoded filters at 44100

2015-05-15 Thread Seb Shader via Pd-list
actually this is not the case; the coefficient and samplerate are updated when the dsp method is called, (this is also the case for many vanilla objects that require info about samplerate, like phasor~, osc~, etc. -Sebastian ___ Pd-lis

Re: [PD] downsampling with [block~] causing artifacts

2015-05-15 Thread Martin Peach
You have a waveform with lots of little square steps in it. Those steps contain high frequencies in the same way a square wave does. Dynamic range is determined by the number of bits used to encode the signal, and the signal/noise ratio, not the sample rate. Martin On Fri, May 15, 2015 at 1:18 PM

Re: [PD] filters hardcoded to 44100hz samplerate

2015-05-15 Thread Alexandre Torres Porres
why don't you try some tests with spectral analysis? 2015-05-15 2:27 GMT-03:00 i go bananas : > i was just looking at the source code, and i see that the high, low, and > bandpass filters are hardcoded to a samplerate of 44100hz. > > x->x_sr = 44100; > > > what happens to that when you run pd at

[PD] downsampling with [block~] causing artifacts

2015-05-15 Thread Alexandre Torres Porres
Howdy, I have a patch attached to show how downsampling produces artifacts/distortion for a 440 sine wave. I don't hear "aliasing" and I think it couldn't be foldover at all because 440 is below the nyquist. Moreover, I hear harmonic higher pitches - so it seems like a harmonic distortion from the

Re: [PD] [osc parse] & [route]

2015-05-15 Thread Joel Corelitz
Chris, thanks again - realized this after I posted, was a total oversight on my part. Your solution works great and I understand it now. Part of my issue is that after hacking around with this, I realized that my OSC commands, generated by a node.js server, start with a leading space so I hav

[PD] [iemnet/tcpclient]: measuring send buffer

2015-05-15 Thread Roman Haefeli
Hi I'm working on a patch that might saturate the network bandwidth, but I don't want to send more data than the network can bear. The most right outlet of [tcpclient] reports how many bytes it has sent. So what I'm trying to do is to count the bytes I'm sending to [tcpclient] and subtracting the