Re: [PD] waveform segment breakpoints

2013-11-15 Thread peiman khosravi
Unless I've misunderstood your question, you can write the data to an array, which can be read with tabread~. *www.peimankhosravi.co.uk http://www.peimankhosravi.co.uk || RSS Feed http://peimankhosravi.co.uk/miscposts.rss || Concert News http://spectralkimia.wordpress.com/* On 15 November

Re: [PD] waveform segment breakpoints

2013-11-15 Thread Alexandros Drymonitis
But what if you want to change some parameters dynamically? Won't you get clicks? I've made an oscillator that changes smoothly between various shapes. You can get it here http://drymonitis.me/code/. It's the first link 'Various Shapes Oscillator~'. Dunno if this is kind of what you're looking for

Re: [PD] waveform segment breakpoints

2013-11-15 Thread peiman khosravi
You shouldn't get a click if you use a phasor~ with samphold~ to ensure that the waveform only changed in between the cycles. *www.peimankhosravi.co.uk http://www.peimankhosravi.co.uk || RSS Feed http://peimankhosravi.co.uk/miscposts.rss || Concert News http://spectralkimia.wordpress.com/*

Re: [PD] realtime MIDI on Windows - best practices for efficiency?

2013-11-15 Thread András Murányi
Just to refine Ingo's answer little bit: On Fri, Nov 15, 2013 at 6:06 AM, Ingo i...@miamiwave.com wrote: 3 things come to my mind spontaneously: 1) use a good sound card with good asio drivers (if you don't do already) 2) raise the latency a little bit 3) eliminate graphical objects like

Re: [PD] Reset webcam properties

2013-11-15 Thread Antonio Roberts
Bonjour Benjamin! Thanks for the link. I also found a gui application v4l2ucp. In it I just pressed reset on each property Antonio On 15 November 2013 01:27, Benjamin ~ 01xy ben...@free.fr wrote: Hello, maybe v4l2-ctl command line tool can help if you are on linux (which was the case as far

[PD] literal $0 from message to gui send and gui receive

2013-11-15 Thread Billy Stiltner
hey, I have been trying to rename sends and receives of dials at runtime they need actual literal $0 in their name. so I tried this with sending a 0 to $$4 in a message it worked for the literal renaming but the patch gets messed up after saving and reloading. somehow the patch does need to be

Re: [PD] AU or VST loader for OSX

2013-11-15 Thread Pagano, Patrick
Hello is there any way we might be able to get a working VST loader for OSX. Admittedly it is outside my skill set to compile externals but i am willing to bug test and write help patches if one is created. I think it would e very useful if we could load AU or vst in PD for MAc Patrick

Re: [PD] literal $0 from message to gui send and gui receive

2013-11-15 Thread Roman Haefeli
On Fri, 2013-11-15 at 09:06 -0500, Billy Stiltner wrote: hey, I have been trying to rename sends and receives of dials at runtime they need actual literal $0 in their name. so I tried this with sending a 0 to $$4 in a message it worked for the literal renaming but the patch

Re: [PD] literal $0 from message to gui send and gui receive

2013-11-15 Thread Billy Stiltner
hell yeah Roman, thanks that works great. Your solution is brilliant. I'm using it to switch a set of controls so that I can load more synthesizers up and not have that TCL screen redrawing processor hog activity. for instance a synth currently consists of osc, osc2, env1,env2,lfo1,lfo2. If

[PD] Pd Weekend Los Angeles Patching Circle Venue/TIme Change

2013-11-15 Thread Theron Trowbridge
We have a last minute change of venue and time for this Sunday's patching circle. The patching circle will now take place at CRASH Space from 3-8 PM following MakerBot Monthly. From Noon to 3 PM (ish), Miller and our workshop instructors will be hanging out at the Crowne Plaza Airport Los

Re: [PD] realtime MIDI on Windows - best practices for efficiency?

2013-11-15 Thread Joe Newlin
Thanks for all that. [speedlim] seems to have solved everything. Joe On Nov 15, 2013, at 4:21 AM, András Murányi muran...@gmail.com wrote: Just to refine Ingo's answer little bit: On Fri, Nov 15, 2013 at 6:06 AM, Ingo i...@miamiwave.com wrote: 3 things come to my mind spontaneously:

Re: [PD] literal $0 from message to gui send and gui receive

2013-11-15 Thread i go bananas
hi Billy, do you know that the gui's have a 'set' function. So, if you send [set 0.4( to a slider, for example, it will be set at that value, but the value is not actually passed on. If you store all your values for osc1, env1, lfo1 and osc2, env2, lfo2 in separate tables or float objects, then

Re: [PD] literal $0 from message to gui send and gui receive

2013-11-15 Thread i go bananas
and here's the same patch expanded a bit to include your $0 sends to oscillators the only step that i haven't added here, is state saving. But now that all your values are stored in the table, it is not too difficult to read/write them using SSSAD or mmb's state saving abstractions, or whatever