Re: [PD] [nbuntil]: an non-blocking [until] replacement

2012-12-17 Thread katja
On Mon, Dec 17, 2012 at 4:18 PM, katja katjavet...@gmail.com wrote: On Mon, Dec 17, 2012 at 1:21 PM, Roman Haefeli reduz...@gmail.com wrote: ... On Mon, 2012-12-17 at 11:56 +0100, katja wrote: Cool, with [nbuntil] the workload is even spread over the cores! I don't think that [nbuntil

Re: [PD] PengPod Linux tablet, hopefully coming soon

2012-12-24 Thread katja
from Pd? Is a real time kernel for ARMv7 available at all? Thanks, Katja 7 tablets with allwinner a10 cost about 70 usd on ebay. I have been playing with a cubieboard a lot this last week ( http://cubieboard.org/ ) and although its not a holy grail, its a really nice toy. -- buZz

Re: [PD] small slice jockey bug report

2012-12-25 Thread katja
Hans, thanks for pointing to possible solutions for this bug. I'm still working on a 0.42 / 0.43 compatible SliceJockey. A first test version should be ready very soon. Katja On Thu, Dec 20, 2012 at 3:30 AM, Hans-Christoph Steiner h...@at.or.at wrote: I'm using SliceJockey as a test patch

Re: [PD] PengPod Linux tablet, hopefully coming soon

2012-12-26 Thread katja
for sample-precise throughput latency measurement. Katja There is now a Debian source package as part of the nightly builds, so it should be much easier to build Pd-extended on Debian these days. After downloading the two tarballs: http://autobuild.puredata.info/auto-build/latest/Pd

[PD] vbap 1.0.3.2 fails when sent longer define_loudspeakers messages

2013-01-08 Thread katja
, but this seems less related to the issue. Katja On Wed, Jan 9, 2013 at 1:02 AM, Hans-Christoph Steiner h...@at.or.at wrote: Ah, that's an important tidbit of info! If that's not in the bug report, please include which version is working. .hc On 01/08/2013 06:53 PM, Zack Settel wrote

[PD] how to iterate over left and right channel separately in one Pd class?

2013-01-11 Thread katja
in one object? Thanks, Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] how to iterate over left and right channel separately in one Pd class?

2013-01-11 Thread katja
Hi Miller, Thanks for the solution. The routines are in place so copying the right channel input to output should do it. Is there any reason to prefer copy_perform() over memcpy()? I'm trying to make the most efficient reverb for RPi Co. Katja On Fri, Jan 11, 2013 at 7:57 PM, Miller Puckette

Re: [PD] how to iterate over left and right channel separately in one Pd class?

2013-01-11 Thread katja
Ok so I did the ugly thing with the right channel input and output pointers: memcpy(outR, inR, vectorsize * sizeof(t_float)); inR = outR; Works like a charm, thanks again. Katja On Fri, Jan 11, 2013 at 10:05 PM, Miller Puckette m...@ucsd.edu wrote: copy_perform assumes the data is 4-byte

Re: [PD] how to iterate over left and right channel separately in one Pd class?

2013-01-12 Thread katja
Function copy_perform8() is also eligible for SIMD processing. I used memcpy() because it is straightforward to use, while Pd's functions pointed to the wrong locations for this case. On the reverb's total load there is no significant performance difference. Katja On Sat, Jan 12, 2013 at 1:00

Re: [PD] how to iterate over left and right channel separately in one Pd class?

2013-01-12 Thread katja
float precision conversions. Throughout Pd there are many untyped float defines and literal constants which default to double, and I have introduced more when making libs double-ready. Not good. I'll come back to this in another thread. Katja On Sat, Jan 12, 2013 at 8:14 PM, Hans-Christoph Steiner h

Re: [PD] how to iterate over left and right channel separately in one Pd class?

2013-01-14 Thread katja
blocks are ok, but they come from the wrong outlets. I swap these within the object. It is less operations than copying left and right inputs to outputs, but still a waste. Katja On Sun, Jan 13, 2013 at 3:49 AM, Hans-Christoph Steiner h...@at.or.at wrote: Yeah, that makes sense. With all

Re: [PD] Raspberry Pi does denormals

2013-01-20 Thread katja
checks are rather expensive for RPi, that's what I've found. Katja On Sun, Jan 20, 2013 at 8:24 PM, Miller Puckette m...@ucsd.edu wrote: Hi all... I think it's possible to get flush-to-zero behavior on the Pi (ARMv6) by calling gcc with --fast-math. At any rate what I found was that, if I

Re: [PD] Raspberry Pi does denormals

2013-01-20 Thread katja
a maximum of 8 single precision floats in parallel, but Raspberry Pi doesn't show a sign that it profits from data alignment, at least not when code is compiled with gcc. Katja On Sun, Jan 20, 2013 at 5:12 PM, Hans-Christoph Steiner h...@at.or.at wrote: I think this is what you want, from 'man

Re: [PD] Raspberry Pi does denormals

2013-01-21 Thread katja
), denormals are still there. I'm literally out of options for the moment. Sorry for not having better news. Katja On Sun, Jan 20, 2013 at 9:51 PM, Miller Puckette m...@ucsd.edu wrote: OK.. but try the 0.44 build on my site - the one from Raspian is quite old :) M On Sun, Jan 20, 2013 at 09:28:30PM

Re: [PD] Raspberry Pi does denormals

2013-01-21 Thread katja
processors, but this implements a lot of conditional checks and it means performance loss for many objects. For current Intel computers the extra load is not so much of a problem, but for poor Raspberry Pi one would rather like to save a few instructions, instead of adding more. Katja On Sun, Jan 20

Re: [PD] Raspberry Pi does denormals

2013-01-22 Thread katja
confusing for the user to sort it out. I'm going to try recompile Pd with PD_BIGORSMALL checks enabled, and see what it means for the normal performance of the filter objects. Katja On Mon, Jan 21, 2013 at 4:24 PM, Pierre Massat pimas...@gmail.com wrote: Hi Katja, thank you for your reply! It is now

Re: [PD] Raspberry Pi does denormals

2013-01-23 Thread katja
. With the 'normalized' Pd, nothing special happens. And indeed, the PD_BIGORSMALL conditional checks come for free: with initial settings of the chaosmonster1, performance is equivalent in both Pd's. Cool! Hopefully this is similar on armv7. Katja On Wed, Jan 23, 2013 at 5:01 PM, Hans-Christoph Steiner h

Re: [PD] Raspberry Pi does denormals

2013-01-24 Thread katja
line with the full path to pd-0.44-0-normalized/bin/pd. It's not a .deb, so it can't be installed under supervision of package manager. Katja On Wed, Jan 23, 2013 at 9:15 PM, Julian Brooks jbee...@gmail.com wrote: Hey Katja, Would you mind sharing the 'normalised' Pd-0.44.0 for RPi please

Re: [PD] Raspberry Pi does denormals

2013-01-24 Thread katja
On Wed, Jan 23, 2013 at 8:00 PM, padawa...@obiwannabe.co.uk padawa...@obiwannabe.co.uk wrote: On 23 January 2013 at 18:23 katja katjavet...@gmail.com wrote: Now I recompiled the Pd-0.44.0 release on Raspberry Pi (took me a few hours, not only because Pi is so slow) Have you looked into cross

Re: [PD] Start Katja's Pd from command line on rpi with full path (was) Raspberry Pi does denormals

2013-01-25 Thread katja
libportaudio2 via Synaptic, 'normalized' Pd would finally start. It is no problem to have the regular Pd still installed. Maybe you can install the local Pd over the regular Pd using the gnumakefile. Didn't try that, I don't like to install things without package manager. Katja On Fri, Jan 25, 2013 at 3:41

Re: [PD] Start Katja's Pd from command line on rpi with full path (was) Raspberry Pi does denormals

2013-01-25 Thread katja
Sorry that must be my fault, archived it with default options. I'll have a look into that and let you know when a better .tar is uploaded. Katja On Fri, Jan 25, 2013 at 4:53 PM, Julian Brooks jbee...@gmail.com wrote: Hi Katja, Thanks for this. When I cd into bin then ./pd I get 'permission

Re: [PD] raspberry pi user experience

2013-01-27 Thread katja
the full text of /boot/cmdline.txt for me, if you have keyboard working with lowered USB speed? (I'm not talking about good audio yet). Thanks, Katja On Sat, Jan 26, 2013 at 8:54 PM, Thomas Grill g...@g.org wrote: Message to self: it seems that one has to wait for updated RPi USB firmware

Re: [PD] raspberry pi user experience

2013-01-27 Thread katja
improve things further. Katja On Sun, Jan 27, 2013 at 2:33 PM, Cyrille Henry c...@chnry.net wrote: i put it in front of everything : dwc_otg.speed=1 dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait

Re: [PD] Raspberry Pi as rt guitar effect processor : proof of concept

2013-01-27 Thread katja
Congratulations Pierre! You're Guitar Extended concept is really great. cheers, Katja On Sun, Jan 27, 2013 at 5:00 PM, Pierre Massat pimas...@gmail.com wrote: http://www.youtube.com/watch?v=NwJNeouLqgQfeature=youtu.be Dear all, It's working !!! :) It looks like a revolution to me

Re: [PD] raspberry pi user experience

2013-01-27 Thread katja
Both are already mentioned but I'd like to confirm that these do work on RPi (provided the USB speed is lowered as described in this thread): iMic and Behringer UCA202. Katja On Sun, Jan 27, 2013 at 5:51 PM, Miller Puckette m...@ucsd.edu wrote: I heard suggestions on the Pi sites (I forget

[PD] now that we don't have user-settable global search paths in Pd-E 0.43

2013-02-03 Thread katja
beginners. Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Message from the boss of Raspberry Pi Foundation !

2013-02-09 Thread katja
for an application like this. Anyway it's great they have put your project on RPi blog. You will be famous, Pi Massat! Congrats again. Katja On Fri, Feb 8, 2013 at 10:51 AM, Pierre Massat pimas...@gmail.com wrote: Dear all, Please read below the message I received from Eben Upton, the boss

Re: [PD] PD 4 Pandora

2013-02-14 Thread katja
Hi, Pandora is ARM Cortex-A8, that's little endian right? What does portaudio's generated makefile say? I compiled Pd for RPi (ARMv6) and there is (correctly) '-DPA_LITTLE_ENDIAN' among the CFLAGS in portaudio's makefile. Katja On Thu, Feb 14, 2013 at 11:53 AM, dreamer drea...@puikheid.nl

Re: [PD] pd 0.44 vanilla build process

2013-02-20 Thread katja
Jonathan, if you do ./configure with option --prefix=absolute path to root dir of that Pd distribution, you can do a local install without su privileges. This doesn't solve the issue with updating but anyway it's convenient. Katja On Wed, Feb 20, 2013 at 11:47 PM, Jonathan Wilkes jancs

Re: [PD] OT: Alsa configuration debian squeeze

2013-02-21 Thread katja
for some reason. Katja On Thu, Feb 21, 2013 at 5:58 PM, Funs Seelen funssee...@gmail.com wrote: Hi list, Sorry for being a little off topic, but I hope to find a solution here. After spending many many hours trying to get the sound on my new machine working I feel I'm getting close, but need

[PD] Slice//Jockey2 beta, compatible with Pd-E 0.43

2013-02-26 Thread katja
took the opportunity to upgrade some effects and overall sound quality. Get SliceJockey2test2.zip from my page: http://www.katjaas.nl/slicejockey/slicejockey.html Please do not hesitate to report bugs if you find any. Katja ___ Pd-list@iem.at mailing

[PD] denormals from [cyclone/svf~] on Linux 64 bit

2013-02-26 Thread katja
was planning to do my own state variable filter anyway, but it would be nice to have a working [cyclone/svf~] as well. Check the object with attached patch if you can. To be specific, I have the issue with Pd-E 0.43.4 for Debian Squeeze amd64 from nightly builds. The i386 build is not affected. Katja #N

Re: [PD] denormals from [cyclone/svf~] on Linux 64 bit

2013-02-26 Thread katja
~]. Not at first sight however. Katja On 2/26/13, Hans-Christoph Steiner h...@at.or.at wrote: I, for one, am very happy that you post on denormal issues! Its great to have these hard technical details worked out so that they don't trip us up in future works :) On my Linux Mint Maya 64-bit

[PD] wireless audio from Pd to PA system

2013-02-28 Thread katja
method in practice, to send audio from Pd without wires? Thanks, Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] wireless audio from Pd to PA system (katja)

2013-03-01 Thread katja
latency it could be perfect for wireless Pd. Katja On Fri, Mar 1, 2013 at 11:41 AM, Antoine Villeret antoine.ville...@gmail.com wrote: hello, those are good for what they have been designed for and it depends on what you mean by exellent sound quality I've made few tests on those few years

Re: [PD] wireless audio from Pd to PA system (katja) (Antoine Villeret)

2013-03-01 Thread katja
Thanks for the links, Rich. The Tranz system comes close, with their stereo channels. It's a pity they don't have a body pack. Oddly, the manufacturer doesn't supply any technical specs for these devices. Katja On Fri, Mar 1, 2013 at 1:08 PM, richard duckworth richduckwo...@yahoo.comwrote

Re: [PD] wireless audio from Pd to PA system (katja)

2013-03-01 Thread katja
Found more info about TI's PurePath wireless. Latency of wireless transmission is 768 samples minimum. Added to this must be the latencies of ad/da conversion. http://e2e.ti.com/support/low_power_rf/f/382/t/110331.aspx Forget about it, this concept is only useful for home entertainment. Katja

Re: [PD] wireless audio from Pd to PA system (katja)

2013-03-01 Thread katja
receiving Pd audio and converting it to analog. Together the receiving device could be the size of a weight-watcher's lunch box, while at the transmitter side the computer's built-in stuff is used. Maybe I'm a bit naive here, anyway I'll report results from experiments. Katja On Fri, Mar 1, 2013 at 2:14

Re: [PD] wireless audio from Pd to PA system (katja)

2013-03-04 Thread katja
: https://www.olimex.com/Products/OLinuXino/A13/A13-OLinuXino-WIFI/ Otherwise, I would just be happy to have learned about ad hoc networks. This can come in handy for other purposes too, for example when synching Pd computers. Katja On Fri, Mar 1, 2013 at 9:34 PM, Phil Stone pkst...@ucdavis.edu

Re: [PD] wireless audio from Pd to PA system (katja)

2013-03-04 Thread katja
Hi Chris, thanks for your advice. You're right, Chinese manufacturers are generally not supportive to open source, which is a pity as they are designing and producing most of the hardware today. Katja On Tue, Mar 5, 2013 at 6:43 AM, chris clepper cgclep...@gmail.com wrote: On Mon, Mar 4, 2013

Re: [PD] wireless audio from Pd to PA system (katja)

2013-03-06 Thread katja
difference? You would get playback speeds like 1.001 or 0.999, perfectly acceptable for my purpose at least. This would greatly simplify the task of resampling. Katja On 3/5/13, Charles Goyard c...@fsck.fr wrote: Hi, see if netjack fills the bill : Netjack is a Realtime Audio Transport over

Re: [PD] pd-ext .43.4 debian squeezy wrong architecture

2013-03-11 Thread katja
Hello, there is still something wrong with the links to Pd-E for Squeeze i386. About 0.44 from 'latest' or nightly builds, gdebi says 'wrong architecture, amd64'. Katja On Sun, Feb 10, 2013 at 9:49 PM, João Pais jmmmp...@googlemail.com wrote: Ok. Btw, the version I just installed from

Re: [PD] pd-ext .43.4 debian squeezy wrong architecture

2013-03-11 Thread katja
Seems that the Jan 29 2012 build (Pd-E 0.43.4) is the latest which can be installed on Squeeze i386, newer ones for Squeeze i386 are actually amd64 according to gdebi (though I did not try 'm all of course). Katja On Mon, Mar 11, 2013 at 11:38 AM, katja katjavet...@gmail.com wrote: Hello

[PD] subnormal numbers explained

2013-03-13 Thread katja
occur, and what can be done to eliminate or prevent them. Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Urban Schlemmer's Reverb Design (Weimar PDCon)

2013-03-16 Thread katja
. Katja On 3/15/13, chris clepper cgclep...@gmail.com wrote: List I rediscovered the presentation from the Weimar PdCon from Urban Schlemmer on reverb design in Pd. The appendices list a set of abstractions and objects from Schlemmer and others, but I have not found an online source

Re: [PD] installing pd 32 bits in a 64 bit linux?

2013-04-02 Thread katja
greatest from nightly builds every now and then, so you have recent fixes. Katja On Mon, Apr 1, 2013 at 7:45 PM, Jm Jones juan...@gmail.com wrote: ok! so I will install PD 64 in my windows machine algo 2013/4/1 András Murányi muran...@gmail.com: Howdy, another 64-bit guy here. My advice

Re: [PD] direct connection from pd to webrowser, low latency

2013-04-26 Thread katja
Yeah, sending FUDI would be good. Or OSC. In case of synthesis, better send controller data instead of audio. In my case (sending processed acoustic audio input) that wouldn't work, but never mind. Katja On Fri, Apr 26, 2013 at 10:36 PM, Phil Stone pkst...@ucdavis.edu wrote: That's a fairly

Re: [PD] direct connection from pd to webrowser, low latency

2013-04-27 Thread katja
latency. I got a LinexFM transmitter from here: http://www.linexfm.nl/ Rumors go that USA versions have higher transmission power than the ones sold in Europe. Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http

Re: [PD] Benefits of using an external soundcard?

2013-08-11 Thread katja
bought them from Digikey but it seems they're out of stock now, obsolete they say! They can still be found from other sources. Katja On Sun, Aug 11, 2013 at 4:37 AM, Mario Mey mario...@gmail.com wrote: Brian: I comment between lines: El 09/08/13 09:42, Brian Fay escribió

Re: [PD] idea for simple technique for getting noise from signal

2013-08-15 Thread katja
, [cyclone/bitxor~] amongst them. They can operate on floats as raw bit sequences, or convert the floats to integers first. Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] [PD-announce] pd 0.45 test release

2013-08-18 Thread katja
with 'Segmentation fault (core dumped)'. Katja On Sun, Aug 18, 2013 at 3:51 AM, Miller Puckette m...@ucsd.edu wrote: Hi all, Pd 0.45-0test1 is now up on http://crca.ucsd.edu/~msp/software.htm or via git from sourceforge: git clone git://pure-data.git.sourceforge.net/gitroot/pure-data/pure-data git

Re: [PD] compiling externals on ARM

2013-09-09 Thread katja
? Katja On Mon, Sep 9, 2013 at 2:06 PM, Ali Momeni batc...@gmail.com wrote: hello all, i'm working with a Udoo board (http://Udoo.org) i've successfully compiled PureData 0.45 from miller's site; i'm now trying to compile some of the externals in the pd svn, but i'm getting the same error for all

Re: [PD] compiling externals on ARM

2013-09-09 Thread katja
home-brew externals and some externals from Pd-extended on RPi and PengPod amongst others. If it would build on Udoo too, we'd know a bit more. Katja On Mon, Sep 9, 2013 at 4:11 PM, Ali Momeni batc...@gmail.com wrote: Hello, Looks like the Udoo is the same as the PengPod. Is the PengPod

Re: [PD] compiling externals on ARM

2013-09-10 Thread katja
structure. Let's not conclude too early that the makefiles are at fault. Katja On Mon, Sep 9, 2013 at 6:29 PM, jo57 jaime.oliv...@gmail.com wrote: I don't think it is clutter at all… I don't have one of these boards, but I'd love to try them, and when I do, I'd love to come back to this documentation

Re: [PD] alsa and jack on ARM/Wandbaord

2013-09-22 Thread katja
unused options as possible in the ALSA mixer, in particular 'IEC958 Default PCM' (don't know if you have that option). That used to make the difference every time though I still don't know why. Katja On Sun, Sep 22, 2013 at 9:00 PM, Chris Clepper cgclep...@gmail.com wrote: I've got a Wandboard

Re: [PD] tanh() or a compressor?

2013-10-01 Thread katja
Hi Mario, Did you try [zexy/limiter~]? It's not so CPU-intensive. Isn't that what you want: only attenuate the sounds which exceed a limit, and leave the rest untouched? Katja On Tue, Oct 1, 2013 at 4:30 PM, Mario Mey mario...@gmail.com wrote: How does Pd or the soundcard outputs the signal

Re: [PD] It's too quiet in here

2013-11-22 Thread katja
Julian, there's ton's of California Pd weekend video material (presentations, discussions, workshops, live performance) but it must be viewed, edited, compressed etcetera. I would expect that it will be available at newblankets.org in a while. Katja On Fri, Nov 22, 2013 at 10:15 AM, Julian

Re: [PD] New Blankets Pd Cali weekend (was) Re: It's too quiet in here

2013-11-28 Thread katja
Media Open Network Stream tab Network - paste link in the network URL field and click Play Or alternatively, there's: http://www.youtube.com/watch?v=giJ-Ss6QRJo Katja On Fri, Nov 22, 2013 at 9:10 PM, Julian Brooks jbee...@gmail.com wrote: Hey Katja, Good to hear. Are you back now? Very

[PD] how to specify literals as type t_float

2014-02-10 Thread katja
. For single precision t_float, '(t_float)0.125' is equivalent to '0.125f'. I can't think of a disadvantage, but let me know if I overlooked something. Katja ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info

Re: [PD] how to specify literals as type t_float

2014-02-11 Thread katja
float type definition. Katja On Tue, Feb 11, 2014 at 6:39 AM, Miller Puckette m...@ucsd.edu wrote: Hi Katya - I think there's no simpler way. On the other hand, for constants like 0.125 and 2, it would be equivalent to say 0.125f, etc - but for other constants (1/3 for example), casting

Re: [PD] smooth random numbers

2014-02-23 Thread katja
to 1024 points in one last step. Attached patch cubic_upsampling.pd shows the interpolation steps done on a sequence of random numbers. Katja #N canvas 143 79 708 617 10; #N canvas 328 438 667 277 stretch 0; #X obj 17 178 tabread4 \$0-ampsettings; #X obj 17 205 tabwrite \$0-stretched-settings; #X

Re: [PD] Bugs in Pd-Extended in Ubuntu LTS

2014-02-25 Thread katja
with Jack. Katja On Tue, Feb 25, 2014 at 9:33 PM, Pierre Massat pimas...@gmail.com wrote: I just checked again and to to sum up I have three problems : - errors with JACK (and instability), - X crashes sometimes when typing stuff in an object box, - and Alsa throwing this error in the console

Re: [PD] pd-double and libraries

2014-03-01 Thread katja
In short, the pd-double project is in coma because it was too ambitious for the available workforce. If it is to be reanimated, it would be better to develop a set of patch files for pd core and test extensively on all platforms where pd can run, before touching on externals. Katja On Sat, Mar

Re: [PD] SOLVED!!! Re: pitch to voltage SOLVED!!!

2014-04-29 Thread katja
samples delay for [rpole~]. You get the integrator's maximum everytime. See attached patch. Of course it still counts integer number of samples. Upsampling would indeed improve accuracy. An upsampled signal needs filtering to remove spectral images, did you try that? Katja On Tue, Apr 29, 2014 at 8

Re: [PD] SOLVED!!! Re: pitch to voltage SOLVED!!!

2014-04-29 Thread katja
. Are you planning to control filter cut off frequency with the pitch detection result? Did you already try that? I wonder how that could work at all, because the pitch result comes only after the adaptive filter. Katja On Tue, Apr 29, 2014 at 3:44 PM, Simon Iten itensi...@gmail.com wrote: Katja

Re: [PD] SOLVED!!! Re: pitch to voltage SOLVED!!!

2014-04-29 Thread katja
or singing the lowest notes in the range. Katja On Tue, Apr 29, 2014 at 7:58 PM, Simon Iten itensi...@gmail.com wrote: katja, exactly! i filter the input based on the output of the pitch detection. i used this for quite some time with my doublebass (but with a pickup per string) and it works

Re: [PD] SOLVED!!! Re: pitch to voltage SOLVED!!!

2014-04-30 Thread katja
this way, but oh how annoying it is to not understand your own patches. Katja On Wed, Apr 30, 2014 at 12:49 AM, Simon Iten itensi...@gmail.com wrote: hi katja, i tried your patch and had a look at it. it’s beautifully programmed :-) so skilled. thanks for taking the time and it’s very interesting

Re: [PD] convolution using pd-vanilla

2014-05-05 Thread katja
FFT and after IFFT, and normalize. Pd's FFT routines assume x[0] at the start of the filter kernel, not at the center, so you have to rotate your zero phase filter kernel before taking it's Fourier Transform. Katja On Mon, May 5, 2014 at 8:49 PM, david medine dmed...@ucsd.edu wrote: For the FFT

<    1   2