[PD] Yellotron : a mellotron in Pd

2014-11-11 Thread Pierre Massat
Dear list, I wanted to shared with you a simple implementation of the mellotron in Pure Data, which I made using free mellontron samples I found online. Everything is explained and available for download in a blog post I just published : http://guitarextended.wordpress.com/2014/11/11/yellotron-a-m

Re: [PD] new raspberries

2015-02-07 Thread Pierre Massat
Dear Katja, Could you please tell us what buffer size you're using in Pd ? Can you get lower than 16 ms without dropouts with a reasonable patch with both adc and dac ? Thanks in advance, Pierre. 2015-02-07 10:39 GMT+01:00 katja : > On Fri, Feb 6, 2015 at 11:56 PM, Miller Puckette wrote: > >

Re: [PD] new raspberries

2015-02-08 Thread Pierre Massat
ra cores are > useful. > > Results are quite promising and there may be options for optimization, > like compiling Pd with NEON instructions enabled (if gcc can do that). > > Katja > > On Sat, Feb 7, 2015 at 1:45 PM, Pierre Massat wrote: > > Dear Katja, > > >

Re: [PD] new raspberries

2015-02-10 Thread Pierre Massat
This is so exciting. Unfortunately they're out of stock now ! 2015-02-10 0:05 GMT+01:00 katja : > Using the following command to check cpu frequency on RPi model 2B: > > sudo watch -n 1 cat /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq > > I found that RPi model 2B does frequency scaling

[PD] Smoothing midi control input ?

2015-02-22 Thread Pierre Massat
Dear list, This is most likely a stupid question. I purchased an Akai midi (usb) controller and started building a patch for it in Pd. I tried a simple delay controlled (length) by one of the knobs on the Akai, and I think I can hear the jumps between the different length values as I turn the knob

Re: [PD] Smoothing midi control input ?

2015-02-23 Thread Pierre Massat
Thank you very much IOhannes. Pierre. 2015-02-22 21:43 GMT+01:00 IOhannes m zmölnig : > On 02/22/2015 09:05 PM, Pierre Massat wrote: > > > The input from the controller is first normalized to the delay line max > > length, then passed to a [pack 0 20], then to a [line~]

Re: [PD] uzi redundancy and how to load kalashnikov as uzi

2015-03-06 Thread Pierre Massat
(Totally off-topic : people at the NSA are going to start monitoring us with thread titles like this ! :) ) 2015-03-05 22:01 GMT+01:00 IOhannes m zmölnig : > On 03/05/2015 09:56 PM, IOhannes m zmölnig wrote: > >> > > >> > Moreover, the cyclone version has upper case U... we were discussing > here

[PD] Problem with [text tolist] in Pd 0.46.6

2015-05-25 Thread Pierre Massat
Dear list, I tried the new [text] for the first time today, and it seems to have interesting features. One thing I particularly like is the ability to find data that is "near" a particular value. Now while trying to build something with it I ran into a strange behaviour. When using the "tolist" m

[PD] Delete element from / add element to array

2015-05-25 Thread Pierre Massat
Dear list, I've spent a fair amount of time today trying to do two things : - delete an element from an array (and end up with an array of size n-1), - add an element to an array (end up with an array of size n+1), both at an arbitrary position in the array. Is there any simple and elegant way t

[PD] Bonk~ and array ?

2015-05-26 Thread Pierre Massat
Dear list, Is there a way to analyze an array containing audio data with bonk~ ? I believe sigmund~ is capable of this. (By the way, is there any pun intended with bonk ?) I'm trying to build a sample slicer and right now I just read the array at audio rate and feed the output to bonk~ . This is

Re: [PD] Bonk~ and array ?

2015-05-27 Thread Pierre Massat
from an array > but > > I think most uses of bonk~ are for the attack detection.) > > > > cheers > > Miller > > > > On Tue, May 26, 2015 at 10:08:54AM +0200, Pierre Massat wrote: > >> Dear list, > >> > >> Is there a way to anal

[PD] Patch acting weird with Pd 0.46.6

2015-06-02 Thread Pierre Massat
Dear list, I just ran into something very odd while trying to parse a string to extract a filename from a path with [list fromsymbol]. Please look at the patch attached. I try to loop backward through the fields of a line in a [text] object to find the first "/" (code 47). When I do it "manually"

[PD] Fwd: Patch acting weird with Pd 0.46.6

2015-06-03 Thread Pierre Massat
nnes m zmoelnig : > On 2015-06-02 23:10, Pierre Massat wrote: > > > > I am probably very tired and I must be missing something obvious. But > right > > now this looks like aliens have hacked into Pd and are playing with my > > nerves. > > afaict¹, you are violati

Re: [PD] Fwd: Patch acting weird with Pd 0.46.6

2015-06-03 Thread Pierre Massat
Win 7 and I get the same baffling results. Pierre. 2015-06-03 14:57 GMT+02:00 IOhannes m zmölnig : > On 06/03/2015 02:34 PM, Pierre Massat wrote: > > Thanks for your reply. I don't understand your answer... I mean I do know > > that one has to use triggers to connect to multip

Re: [PD] Patch acting weird with Pd 0.46.6

2015-06-03 Thread Pierre Massat
can > only get triggered after the complete recursion has stopped. > > That's why the output is reversed in order. > > Take a look at pd manual: 2.3.2. depth first message passing > > Cheers, > jan > > > On 06/02/2015 11:10 PM, Pierre Massat wrote: > >> Dear l

Re: [PD] Patch acting weird with Pd 0.46.6

2015-06-04 Thread Pierre Massat
Dear all, Just to give you my modest input on this discussion. I just looked at IOhannes' last patch and now I got it. The mistake I made was to believe that print would send the current value to the console at each step of the loop (like print in a for loop in Python for instance), and that the f

Re: [PD] Patch acting weird with Pd 0.46.6

2015-06-19 Thread Pierre Massat
Dear all, Sorry I forgot to reply. Thank you all for your inputs. I've learned something. @IOhannes : I've used an array instead as suggested. Cheers, Pierre. 2015-06-10 17:15 GMT+02:00 IOhannes m zmölnig : > On 06/02/2015 11:10 PM, Pierre Massat wrote: > > PS : I've

Re: [PD] URL Audio to PD

2015-07-03 Thread Pierre Massat
I have used [readanysf~] for playing webradio streams in the past, and it's not very reliable. It seems like it has trouble playing streams from urls that are "encaspulated" somehow. I've ended up using VLC instead. Pierre. 2015-07-02 20:56 GMT+02:00 Roman Haefeli : > On Don, 2015-07-02 at 17:27

[PD] Using midi

2015-07-07 Thread Pierre Massat
Dear list, I am trying to understand how midi works in Pd, and how to facilitate the connection to a midi device. I m using Pd 0.46-6 on AVlinux with JACK. When using JACK, OSS midi doesn't work. ALSA does, but in an odd way (at least to me). Pd doesn't appear as a writeable midi client in JACK

Re: [PD] Using midi

2015-07-09 Thread Pierre Massat
ot open by default, and I have to manually open it every time I start Pd. So I was wondering if there was a way to open the port by default at startup. Perhaps with a startup flag ? Cheers, Pierre. 2015-07-08 21:36 GMT+02:00 Jeff Sandys : > > > >> Date: Tue, 7 Jul 2015 21:48:12 +02

Re: [PD] Using midi

2015-07-09 Thread Pierre Massat
Great, thank you Roman ! I will try this flag tonight. Pierre. 2015-07-09 9:53 GMT+02:00 Roman Haefeli : > On Thu, 2015-07-09 at 09:22 +0200, Pierre Massat wrote: > > > > The problem lies with Pd now, in the sense that the midi port is not > > open by default, and I hav

Re: [PD] Using midi

2015-07-09 Thread Pierre Massat
Thank you Peter, I will try your suggestions as well. It would indeed be very nice if we could connect to devices by name ! Cheers, Pierre. 2015-07-09 16:24 GMT+02:00 Peter P. : > * Roman Haefeli [2015-07-09 03:54]: > > On Thu, 2015-07-09 at 09:22 +0200, Pierre Massat wrote: > >

[PD] A song (partially) made using Pd

2015-07-25 Thread Pierre Massat
Dear list, I have just published a new song I made. It might not be obvious, but I used Pd for the wha-wha effect on a guitar that can be heard throughout the song (I used the new [bob~] filter), and also for the drum track (actually samples from a drum machine, but played in a sequencer I made wi

[PD] Midi syncing ?

2015-08-05 Thread Pierre Massat
Dear list, Is there a way to sync Pd with another application's midi clock ? I've been using a sequencer made with Pd to record drum tracks in Ardour, but I always have to tweak Ardour's tempo afterward. What I would need is for Pd to be able to receive Ardour's ticks and use them as I would use a

Re: [PD] Fun 5-voice multi-sample player (With Mellotron samples!)

2015-11-08 Thread Pierre Massat
Hi William, I'm glad you're having fun with this ! Cheers, Pierre. 2015-11-08 7:26 GMT+01:00 William Huston : > If anyone is looking for a multi-sample player in PD > I found this today and is very fun to play with: > > > https://guitarextended.wordpress.com/2014/11/11/yellotron-a-mellotro

[PD] Multiple audio outputs on a single-board computer ?

2021-03-16 Thread Pierre Massat
Dear all, I haven't posted anything on this list in years. I'm trying to build a system to play several sound files in a loop, each around 2 minutes in length, all at the same time. By "several" I mean 10 to 15 different files. While I'd have no problem making a Pd patch to achieve this, I have no

Re: [PD] Multiple audio outputs on a single-board computer ?

2021-03-18 Thread Pierre Massat
17:53 UTC+01:00, Lorenzo Sutton : > On 17/03/21 07:42, Pierre Massat wrote: >> Dear all, >> >> I haven't posted anything on this list in years. >> I'm trying to build a system to play several sound files in a loop, >> each around 2 minutes in length, all a

Re: [PD] Multiple audio outputs on a single-board computer ?

2021-03-21 Thread Pierre Massat
Thank you all for these great answers. Cheers, Pierre. 2021-03-19 21:12 UTC+01:00, Thomas Grill : > Yes, i have one of those and it works well on the Rpi, also with Pd of > course. > best, Thomas > >> Am 18.03.2021 um 10:24 schrieb Pierre Massat : >> >> Thank you

Re: [PD] accoustic guitar chord detection

2017-03-29 Thread Pierre Massat
Have you tested it with real guitar input ? I've used Pd with my guitar a lot but I never managed to get anything reliable off sigmund except the base frequency. I'm also very interested if it does work. Cheers, Pierre. 2017-03-29 18:21 GMT+02:00 patrice colet : > I don't really know what 'fanc

Re: [PD] Bela - Ultra-low-latency embedded audio platform

2016-02-29 Thread Pierre Massat
That sounds exactly like what I've been trying to find for half a decade. 2016-02-29 14:25 GMT+01:00 i go bananas : > yes awesome! was just asking around the other day if someone had > something like this. will def check it out! Matt > > On Mon, Feb 29, 2016 at 8:35 PM, Chris wrote: > >> Hi

[PD] Machine learning and sound ?

2016-07-21 Thread Pierre Massat
Dear List, I did a little bit of machine learning with neural network when I was in school, and I'd like to try it on sounds. What I'd like to do is to identify patterns, types of sounds, like "people talking", "loud, compressed rock music", etc. Is that feasible ? I found this library on the web

Re: [PD] Machine learning and sound ?

2016-07-22 Thread Pierre Massat
> > > > > On 21 Jul 2016, at 13:42, Thomas Grill wrote: > > > > Please note that most applications of neural nets are non-realtime, e.g. > not in the same domain as Pure Data. > > The evaluation of neural networks can be, but the training never is. > > best, Thom

Re: [PD] udoo board sound issues

2014-06-06 Thread Pierre Massat via Pd-list
Hi, I wonder whether this relatively poor performance has something to do with the fact that this soundcard is powered through USB. I know that this is a big issue on the RPi, so perhaps should get a powered USB hub and give it another try. Cheers, Pierre. 2014-06-06 11:18 GMT+02:00 Alexandros D