Re: [PD] best format for send/receive between iOS and libPD

2014-05-03 Thread Billy Stiltner
:) On Wed, Apr 30, 2014 at 5:57 AM, Miller Puckette m...@ucsd.edu wrote: Hi Matt - From Pd's perspective at least, it would be more efficient to handle the messages separately (some of Pd's list operations have to copy the list, which would be expensive if done iteratively over a long

Re: [PD] 64bit runtime error 'couldn't read file /usr/tcl//pd-gui.tcl'

2014-04-19 Thread Billy Stiltner
I had no problems compiling from /Downloads/pd-045x/src then looking for all the symbolic links and launchers that point to the default installed 'puredata' package that comes with ubuntustudio 12.10 except that I installed some of the guiplugins and now pd will not close from menu or window

Re: [PD] comments with trailing | ?

2014-04-19 Thread Billy Stiltner
re: something less ugly http://rosettacode.org/wiki/String_concatenation#LabVIEW :) why in the world have I not thought to make an external that you can script with assembly language? I mean most modern audio devices have at least 64 programmable 'oscillators' or wave channels if you will. Even

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

2014-04-17 Thread Billy Stiltner
http://puredata.hurleur.com/sujet-6417-dollar-signs-objects-messages On Sun, Nov 17, 2013 at 1:32 PM, Billy Stiltner billy.stilt...@gmail.comwrote: thnx i go bananas, the idea is to not use SSSAD or mmb's state saving abstractions On Fri, Nov 15, 2013 at 11:12 PM, i go bananas hard

Re: [PD] Edit / Text Editor - what's the use?

2014-04-14 Thread Billy Stiltner
use [pointer] to traverse right click [text] or help browser-Pure Data/5. Reference/text-object.pd On Thu, Apr 3, 2014 at 2:28 PM, Alexandre Torres Porres por...@gmail.comwrote: Hi there, I see there's a new [text] object in Pd 0.45 that defines, opens and edits text. This raises some

Re: [PD] tabread interpolation in a patch

2014-03-29 Thread Billy Stiltner
this is why a table read by tabread4~ needs the 3 extra entries On Mon, Mar 24, 2014 at 5:59 PM, Alexandre Torres Porres por...@gmail.comwrote: Hi folks, did this today. https://docs.google.com/file/d/0B3AoiT0xk8fnWkxjalB3c2dHQWs/ I have no idea about the math, but it Works :) So, this

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

2014-03-22 Thread Billy Stiltner
keypad with 8bit LCD to the bus-G. On Wed, Mar 19, 2014 at 5:13 AM, IOhannes m zmoelnig zmoel...@iem.atwrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-03-18 21:37, Billy Stiltner wrote: what's wrong with making the file select dialog an atom? allready works in all the oses

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

2014-03-22 Thread Billy Stiltner
DoubleQuote %22 SingleQuote %27 LeftArrow %3C Comma %2C RightArrow%3E Period.Question %3F ForwardSlash %2F Space + CarriageReturn %0D%0A *** On Sat, Mar 22, 2014 at 6:05 AM, Billy Stiltner

Re: [PD] libpd separating gui from core

2014-03-18 Thread Billy Stiltner
just have too many graphical objects. On Fri, Feb 28, 2014 at 11:34 AM, Billy Stiltner billy.stilt...@gmail.comwrote: re: Well, you're not using any tcl/tk if you're using libpd in ofxPd. The blame falls elsewhere. on slow machines it doesnt matter what gui you use there will be problems

Re: [PD] Arp emulation?

2014-03-18 Thread Billy Stiltner
nice filter Cyrille! what's wrong with mine? xensynth/polysynth/noisybox-l_bp.pd can be found in linfilterbank.pd~ or from the graphical interface of either synth as checkbox 4 (if the first is #1) filter selection. it seems as if its in permanent resonance, it's a model of the original cookbook

Re: [PD] Arp emulation?

2014-03-18 Thread Billy Stiltner
1994. It is midi capable as well. I have been fooling with adding OSC control and transferring them to MOBMUPLAT for iOS Sent from my iPad On Mar 18, 2014, at 12:46 PM, Billy Stiltner billy.stilt...@gmail.com wrote: nice filter Cyrille! what's wrong with mine? xensynth/polysynth

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

2014-03-18 Thread Billy Stiltner
what's wrong with making the file select dialog an atom? allready works in all the oses. just fan it's innards out some outputs On Mon, Mar 10, 2014 at 3:03 PM, Jonathan Wilkes jancs...@yahoo.com wrote: On 03/10/2014 12:56 PM, IOhannes m zmölnig wrote: On 03/10/2014 05:38 PM, Jonathan

Re: [PD] Data structures and click event

2014-03-12 Thread Billy Stiltner
re: 'slow ass coders' usually takes me 15 years to get anything done, the things that are taking longer than 15 years will probably be wonderful. I will link to you something that will make you change your mind about 'being years behind everything else' 3:33:28 seconds of some /pd-0.45-4/bin$

Re: [PD] Data structures and click event

2014-03-12 Thread Billy Stiltner
-- use/bin/jackd or something On Wed, Mar 12, 2014 at 3:57 PM, Billy Stiltner billy.stilt...@gmail.comwrote: re: 'slow ass coders' usually takes me 15 years to get anything done, the things that are taking longer than 15 years will probably be wonderful. I will link to you something

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-05 Thread Billy Stiltner
. Then again, he also said that the iem tabs objects seem to process tables in chunks...so maybe the gui is also only redrawn in those chunk sizes? that would make sense i guess. On Wed, Mar 5, 2014 at 10:35 AM, Billy Stiltner billy.stilt...@gmail.comwrote: So when you use the [until] loop

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread Billy Stiltner
So when you use the [until] loop you are sending drawing instructions to the GUI ($arraysize * $no_mouse_events) times. A single array redraw instruction in tcl is about 4k, so to scroll a single pixel for a 100-element array: 100 elements * 1 = 100 redraws * 4k = 400k thats why i say fix tcl/tk

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-02 Thread Billy Stiltner
seems like there was something about the way i made the wave editor that worked,i never tried overflowing the the things and my method is a hack of the pd file @xensynth and the lfo editor, otherwise holler at Mike Booth ala mmb.

Re: [PD] libpd separating gui from core

2014-02-28 Thread Billy Stiltner
it's the overhead of the os that gets in the way, i started to try ofxpd but found ofxui to be slow as all getout with my old machine. what would be nice is someone fixing tcltk On Thu, Feb 27, 2014 at 4:00 PM, Ivica Ico Bukvic i...@vt.edu wrote: For instance, it seems like there are two

Re: [PD] libpd separating gui from core

2014-02-28 Thread Billy Stiltner
: Well, you're not using any tcl/tk if you're using libpd in ofxPd. The blame falls elsewhere. enohp ym morf tnes -- Dan Wilcox danomatika.com robotcowboy.com On Feb 28, 2014, at 3:13 AM, Billy Stiltner billy.stilt...@gmail.com wrote: it's the overhead of the os that gets

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

2014-02-26 Thread Billy Stiltner
when i first installed miller's latest vanilla on a new 64 bit installation of 13.04(I actually installed it on a different laptop last summer then put the drive ina new laptop the other day then installed vanilla. it crashed till i upgraded the intel graphics driver. then it crashed till i

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

2014-02-26 Thread Billy Stiltner
proof that it works https://archive.org/details/newcpusmandelbox only after almost hours did the graphics stop updating, the audio kept going. been a while since i could run for hours. On Wed, Feb 26, 2014 at 3:27 AM, Billy Stiltner billy.stilt...@gmail.comwrote: when i first installed

Re: [PD] libpd separating gui from core

2014-02-26 Thread Billy Stiltner
(embed Pd into anything with a CPU) * Anyone else? I don't think these agendas are necessarily at odds with one another. Cheers, Peter On Mon, Feb 24, 2014 at 8:12 PM, Billy Stiltner billy.stilt...@gmail.comwrote: I think Miller's puredata is awesome. more than 20 years ago I

Re: [PD] iem_sqrt4~ crashes on linux 64 bit

2014-02-25 Thread Billy Stiltner
25, 2014 at 3:59 AM, IOhannes m zmoelnig zmoel...@iem.atwrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 hi, On 2014-02-25 00:39, Billy Stiltner wrote: hey iem_qrt4~.pd_linux crashes the newest pd-extended as well as the latest pd source from sourceforge on ubuntu studio 13.04

Re: [PD] iem_sqrt4~ crashes on linux 64 bit

2014-02-25 Thread Billy Stiltner
this is with Miller's vanilla latest with added iem_lib snagged in from pd-extended, i didnt grab or complie ggee to test ~moog yet https://archive.org/details/newcpusmandelbox On Tue, Feb 25, 2014 at 4:32 PM, Billy Stiltner billy.stilt...@gmail.comwrote: re: iem_cot~ lo pass vcf2 started

Re: [PD] libpd separating gui from core

2014-02-24 Thread Billy Stiltner
I think Miller's puredata is awesome. more than 20 years ago I wrote my own assembly routines as well as c++ for an analog devices 32 ch board for waterplant control software , but ended up using the factory drivers instead when they came out for this software

[PD] iem_sqrt4~ crashes on linux 6 bit

2014-02-22 Thread Billy Stiltner
hey iem_qrt4~.pd_linux crashes the newest pd-extended as well as the latest pd source from sourceforge on ubuntu studio 13.04. I didn't want to mess with trying to figure out how to fix the source so I just made an iem_sqrt4~.pd that has a sqrt~ inside now all the iemlib vcf filters work .

[PD] Fwd: pd gui: partial interface freeze

2014-02-13 Thread Billy Stiltner
-- Forwarded message -- From: Billy Stiltner billy.stilt...@gmail.com Date: Wed, Feb 12, 2014 at 1:13 PM Subject: Re: [PD] pd gui: partial interface freeze To: Py Fave pyf...@gmail.com I have the same problem , both recordings I did last night crashed, I think it's the number

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

2013-11-23 Thread Billy Stiltner
i got my ears on did someone say Phil Stone? Fractals? Pure Data? https://archive.org/details/Mandelboxporc15 On Fri, Nov 22, 2013 at 2:55 PM, katja katjavet...@gmail.com wrote: Julian, there's ton's of California Pd weekend video material (presentations, discussions, workshops, live

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

2013-11-17 Thread Billy Stiltner
thnx i go bananas, the idea is to not use SSSAD or mmb's state saving abstractions On Fri, Nov 15, 2013 at 11:12 PM, i go bananas hard@gmail.com wrote: 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

[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] literal $0 from message to gui send and gui receive

2013-11-15 Thread Billy Stiltner
: 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

Re: [PD] [WebPd] Status update

2013-11-03 Thread Billy Stiltner
I hope Chris's original work is preserved so that things like this can be easy to learn. re slowly it takes me 15 or 20 years to get anything done. On Mon, Oct 28, 2013 at 12:38 PM, s p seb...@gmail.com wrote: Slowly, slowly ... :) 2013/10/28 Hans-Christoph Steiner h...@at.or.at Cool

Re: [PD] moog~ in pure pd?

2013-10-15 Thread Billy Stiltner
martin, I have not tried the moog but did use one of your abstractions using the fexpr~ as a starting point to build the original dsp cookbook filters(frequency thats where its happenin man) , I had been wanting to hear them in realtime since 1998 or so. I'm not sure I have them in there correct

Re: [PD] datastructures midirecorder

2013-10-12 Thread Billy Stiltner
Patrice Colet, that proll.tcl is somethin else. I had no idea that such a thing is possible. I think I changed wintop-70 to wintop+30 to show the entire top canvases. I guess the cursor just needs updated in order to be seen. lookin good so far man. On Fri, Oct 11, 2013 at 2:20 PM, João Pais

[PD] Cool Video of Miller

2013-08-13 Thread Billy Stiltner
I dont think we as a group could appreciate the work of Miller enough. Even though his C geniusness has churned out some sort of interface not unlike an object oriented visual c++ object with connectors I mean think about it. make a new pd object itś like saying make a new class that does these

[PD] how to have multiple transports with only one clock

2013-06-11 Thread Billy Stiltner
have a midi transport that sends a midi clock signal plus masterclock and it is used as a control in more than one place with or without patches that have it also to get them to not trigger each other when you start from one transport , send $0-masterbpm to where $0-masterbpm is needed in the

[PD] archiving synth-fractalsequencer at archive.org

2013-06-11 Thread Billy Stiltner
anyone ever tried that? https://archive.org/details/Xensynth10.01 you heard it here first, if I can find a better place than google drive to mirror the 27or so MB zippedup whore of a synthesizer and fractal sequencer ___ Pd-list@iem.at mailing list

Re: [PD] Changing array curves with mouse interaction

2013-04-18 Thread Billy Stiltner
. graphing weirdness. i probably figured this out before and its probably time i move onto data structures instead of doing gui graphing tricks. On Tue, Apr 16, 2013 at 11:30 AM, Billy Stiltner billy.stilt...@gmail.comwrote: on second thought I have no clue how to get vertical more than 1 pixel

Re: [PD] Changing array curves with mouse interaction

2013-04-16 Thread Billy Stiltner
on second thought I have no clue how to get vertical more than 1 pixel points or thick lines. the example , will have to look at source On Fri, Apr 12, 2013 at 7:04 AM, Billy Stiltner billy.stilt...@gmail.comwrote: make the pixel height 2wice or more than the vertical array size if its

Re: [PD] Serquencer.

2013-04-12 Thread Billy Stiltner
hey had to add bsaylor/ to mtosr and susloop~ to get it working in ubuntu pd-extended looks like missing parts to my audio production will probably make changes to fit my style great study guide thanks On Wed, Apr 3, 2013 at 12:03 AM, i go bananas hard@gmail.com wrote: something in there

Re: [PD] Changing array curves with mouse interaction

2013-04-12 Thread Billy Stiltner
make the pixel height 2wice or more than the vertical array size if its a horizontal problem do the same with width and horizontal size On Sat, Apr 6, 2013 at 8:10 AM, Björn Eriksson miu...@gmail.com wrote: Hello list, I´ve been searching around a little about hints on how to make a mouse

[PD] xensynth9.01.7

2013-02-09 Thread Billy Stiltner
http://www.geocities.ws/billy_stiltner/music/pd/xensynth9.01.7.zip it ought to load and play with the builtin virtual keyboard on windows without having midi routed. done some stuff with the delay and other stuff i don't remember at the moment. recording done today testing out microphone to

Re: [PD] RE : package system for Pd WAS: Plugin auto install feature to Pure data

2013-02-05 Thread Billy Stiltner
sounds right up my alley but i have not a clue about how to write a line of code in tcl , python nor lua. i was trying to convert the big bunch of wafscript to just a simpl makefile for compiling pugl today and by the time i could get to the end of the spaghetti i realized i don't even remember

Re: [PD] 0.43.4 plugin~ - does it work 4 u?

2013-02-04 Thread Billy Stiltner
on ubuntustudio 12.10 from the help browser when opening plugin~ help pd poofs into thin air i can type plugin~ into an object box and click out of it with no problem have not relocated my plugin names list yet to try to load one ___ Pd-list@iem.at

Re: [PD] leap motion controller

2013-01-29 Thread Billy Stiltner
did you have to resend your contact info? i applied early when garrett lisi posted a video about them on facebook. and only heard back a few months ago. On Fri, Jan 18, 2013 at 10:10 AM, me.grimm megr...@gmail.com wrote: I'm also in the developers-program. so PD object in the works? :) i

Re: [PD] [PD-announce] Pd-extended 0.43.4 released!

2013-01-29 Thread Billy Stiltner
what about dial? that, gggee moog~ and iemlib resonant vcfs is the only reason i use pd extended On Tue, Jan 29, 2013 at 3:36 PM, Hans-Christoph Steiner h...@at.or.at wrote: Its time to announce the next big Pd-extended release, 0.43.4! This release has the most new features of any release

Re: [PD] [PD-announce] Pd-extended 0.43.4 released!

2013-01-29 Thread Billy Stiltner
or knob instead of dial and can i still install it through the apt-get update through puredata.info repository ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] How to change the Z-order of gui elements ?

2013-01-29 Thread Billy Stiltner
haha i ruined an entire pd patch once while trying to force a canvas to the back using a text editor it took quite a while to get all the cables connected back up correctly On Tue, Jan 29, 2013 at 5:04 PM, Hans-Christoph Steiner h...@at.or.at wrote: Select-all, then deselect the canvas, then

Re: [PD] gpio on the raspberry pi from within pd ?

2013-01-26 Thread Billy Stiltner
sounds like you guys are programming pic microcontrollers On Sat, Jan 26, 2013 at 6:34 PM, Miller Puckette m...@ucsd.edu wrote: Since writnig that I think I found a good toolset and C api, called WiringPi, on: https://projects.drogon.net/raspberry-pi/wiringpi/ cheers Miller On Sat, Jan

[PD] pd for processing errors on

2013-01-25 Thread Billy Stiltner
with processing 2 beta 6 (havent installed beta 7 yet i get this after trying to run HelloPd *** ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi .plus lots more similar including bluetooth and phone JackSocketClientChannel read

Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released

2013-01-25 Thread Billy Stiltner
Here's how I've managed to send and receive from a parent(multi instance) abstraction to multiple instances of nested sub abstractions. within main abstraction [mainAb] some data named $0varsend it like this [s $0var] initialize sub abstractions pass names X_1 and X_2 in so you can send

Re: [PD] linux session gets killed when typing to fast in pd, logout

2013-01-21 Thread Billy Stiltner
its not to hard to get your keyboard settings screwed up when changing them around. in the settings editor there are several places that you can view modify the keyboard control window manager, window manager tweaks and keyboard are a few places to check. maybe setting everything back to default

Re: [PD] linux session gets killed when typing to fast in pd, logout

2013-01-21 Thread Billy Stiltner
i found hid keyboard but for some reason it's not working with my keyboards is there a way for me to use give puredata exclusive response to the keyboard regardless if i click on another window and bring it into focus with the mouse? also is there a way to use 2 keyboards and have one of

Re: [PD] linux session gets killed when typing to fast in pd, logout

2013-01-21 Thread Billy Stiltner
hid only sees my input devices if i start pd with sudo ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] libpd netreceive

2013-01-20 Thread Billy Stiltner
Peter while you are in here, i'm wondering about using the latest libpd on linux, would it be better to use the old code or the latest? is there anything that doesn't work that didn't work in the previous versions? ___ Pd-list@iem.at mailing list

Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released

2013-01-20 Thread Billy Stiltner
wrote: - Original Message - From: Billy Stiltner billy.stilt...@gmail.com To: IOhannes zmölnig zmoel...@iem.at Cc: pd-list@iem.at Sent: Sunday, January 20, 2013 10:04 PM Subject: Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released haha , last month i tried

Re: [PD] [PD-announce] pd 0.44-0 test 1 released

2012-12-29 Thread Billy Stiltner
everytime i run audacity i can not get the audio to work again with anything without a cold start. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] [PD-announce] pd 0.44-0 test 1 released

2012-12-27 Thread Billy Stiltner
one thing that locks up pd that comes with ubuntustudio12.10 is switching to jack from alsa. i havent tried to turn dsp off yet i think with older versions i could turn off dsp and change audio settings without pd stopping. i think it also depended on whether i disconnected from qjack

Re: [PD] [pd] using set with tabosc4~ and tabread~ while dsp=off

2012-11-01 Thread Billy Stiltner
~ seem to work fine on my machine. There's a wierd restriction that the table must be a power of 2 + 3 in size (such as 67, 131, 259, ...) - otherwise tabosc4~ prints out an error and outputs zero. cheers Miller On Wed, Oct 31, 2012 at 09:45:57PM -0400, Billy Stiltner wrote: hey it appears I

Re: [PD] close all patches on quit sourceforge patch

2012-11-01 Thread Billy Stiltner
I always get (Tcl) UNHANDLED ERROR: bad window path name .x94d6a18.c while executing winfo toplevel $tkcanvas (procedure pdtk_canvas_getscroll line 2) invoked from within pdtk_canvas_getscroll .x94d6a18.c (uplevel body line 349) invoked from within uplevel #0 $cmd_from_pd when I open a voice

[PD] [pd] using set with tabosc4~ and tabread~ while dsp=off

2012-10-31 Thread Billy Stiltner
hey it appears I can use set with tabread~ while dsp is off and it works when dsp is set to one but not so with tabosc4~ actually though i'm not getting set to work with tabosc4~ at all ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management

[PD] 2 roadblocks in developing user friendly pd patch

2012-10-12 Thread Billy Stiltner
#1 I see no vanilla way to use file browse dialog to produce a path/filename suitable for saving as preset #2 there is no vanilla way to parse a scala .scl file without using a python script, java , or etc.. I am not really complaining because I can easily work around these limitations with

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Billy Stiltner
30, 2012 at 3:37 AM, Cyrille Henry c...@chnry.net wrote: The 1st arg of the list is the position where to write in the table. you certainly want to add a 0 in front of the list. cheers c Le 30/09/2012 04:11, Billy Stiltner a écrit : got another question [2 5.5 7 9 3( | [s mytable

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Billy Stiltner
thank you IOhannes m zmölnig now I can assign a port per synth, I'm not sure it is a good idea now On Sun, Sep 30, 2012 at 7:06 AM, IOhannes m zmölnig zmoel...@iem.at wrote: On 09/30/2012 09:48 AM, Billy Stiltner wrote: thank you very much Cyrille I figured that out after I pretended I

Re: [PD] [pd] osc processing array to the pd table

2012-09-30 Thread Billy Stiltner
, 2012 at 10:13 AM, IOhannes m zmölnig zmoel...@iem.at wrote: On 09/30/2012 01:24 PM, Billy Stiltner wrote: thank you IOhannes m zmölnig now I can assign a port per synth, I'm not sure it is a good idea now i don't think this is a good idea. instead, use an OSC-prefix for each synth: /FM/1

Re: [PD] Preset system in pd?

2012-09-30 Thread Billy Stiltner
this is where I got the idea for my preset system which although the same concept is a bit different. http://gregsurges.com/tag/pure-data/ On Sun, Sep 30, 2012 at 7:32 PM, Joe Newlin jtnew...@gmail.com wrote: Frank Barknecht's sssad is great: http://puredata.info/downloads/sssad You can even

Re: [PD] Preset system in pd?

2012-09-30 Thread Billy Stiltner
due to the nature of my polysynth patch I can make [polysynth a] and [polysynth b] and have them both load a seperate preset. I haven't added specifying the preset filename to the creation or to the message structure yet but that is doable, you just have to hit the load preset button.

[PD] [pd] osc processing array to the pd table

2012-09-29 Thread Billy Stiltner
hey i have had a time with getting some data to go across the network with osc i can open a file in processing and send it to pd as a string and receive it as a string in pd but then can not get a table to take it as a list of floats. so now i have broken up the string in processing into

Re: [PD] [pd] osc processing array to the pd table

2012-09-29 Thread Billy Stiltner
nevermind got it figured out .length gives me the number of Strings in a String array in java. this was the piece of info I was stuck on ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] [pd] osc processing array to the pd table

2012-09-29 Thread Billy Stiltner
got another question [2 5.5 7 9 3( | [s mytable] [table mytable] why do I not get a write to mytable[0] with a 2 when i click the messagebox? ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] Sound of earth's magnetosphere

2012-09-29 Thread Billy Stiltner
yeah On Thu, Sep 27, 2012 at 8:41 AM, Pierre Massat pimas...@gmail.com wrote: Is anyone aware of this : http://www.nasa.gov/mission_pages/cassini/multimedia/pia07966.html ? :) Pierre. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] pitched reverb?

2012-09-29 Thread Billy Stiltner
yeah I noticed that the gverb was out of tune with my guitar or the free end of the microphone was not at such a length that the correct frequencies were resonating in a recording recently. On Thu, Sep 27, 2012 at 4:52 AM, Claude Heiland-Allen cla...@mathr.co.uk wrote: Hi, On 27/09/12 08:58,

Re: [PD] Pd-* 0.43 hanging with watchdog: signaling pd...

2012-09-25 Thread Billy Stiltner
I had been having the awfullest trouble with pure data locking up , I figured it was plain ol too much processing, then I noticed that qjackctrl was stopping jackd so I started using patchage instead and ran a lot longer till just when I was ready to respond to this till jackd hung up and left

Re: [PD] it's a mess but it's gettin close to bein a masterpiece

2012-09-24 Thread Billy Stiltner
Working on xensynth9 - fixed preset blurbs env2 labeled as env1, control for string1cutoff had a _ between $0 and -, there was somethin else with the presets that I can't remember but it is working now. I have a spot for tuning in the presets but I'm still debating whether it should be included in

Re: [PD] it's a mess but it's gettin close to bein a masterpiece

2012-09-23 Thread Billy Stiltner
could very well possibly be the 32 bit externals I compiled and included or copied from another installation. remove from the polysynth folder moog~.pd_linux and also remove polysynth/ext/knobl.pd_linux http://youtu.be/S7NykkWZD48 if you are wanting to just try out the synth you found the

Re: [PD] it's a mess but it's gettin close to bein a masterpiece

2012-09-23 Thread Billy Stiltner
oops email is bad for my spellin knob.pd_linux and moog~.pd_linux may have some weird 64 bit incompatibility On Sun, Sep 23, 2012 at 6:24 AM, Billy Stiltner billy.stilt...@gmail.com wrote: could very well possibly be the 32 bit externals I compiled and included or copied from another

Re: [PD] it's a mess but it's gettin close to bein a masterpiece

2012-09-23 Thread Billy Stiltner
wasn't built on this machine

Re: [PD] pd-extended 0.42.5 packages for many Ubuntu releases, i386/amd64

2012-09-23 Thread Billy Stiltner
I used to use a compiler that would do cross compilng - anything from playstation , gameboy to a Microchip PIC16Fxxx. it would be nice to have something like that for linux, windows, and mac. Are you including the iemlib in these packages or is it just there waiting to be not included anymore. I

[PD] it's a mess but it's gettin close to bein a masterpiece

2012-09-20 Thread Billy Stiltner
hey pd cable connector clickers. I'm sharing my xenharmonic synthesizer patch in it's current state because I really like the way it sounds. can work with vanilla if you put some sort of knob in where it's supposed to go, uses the iem filters as well as moog from ggee. there might be a thing or 2

[PD] VideoSecu DVR Security board with 3 cameras plus PD

2012-09-20 Thread Billy Stiltner
Is it doable? The cameras are black and white, the mics are great except for the hum from poor insulation, the infrared had probably half blinded me, it allready has some linux on it but the network interface is through an activex browser dohicky, Should I just throw preloaded 12.04 Ubuntu

Re: [PD] Creating a drum machine with save slots

2012-09-18 Thread Billy Stiltner
I used tables for storing presets on the drum machine http://www.geocities.ws/billy_stiltner/music/pd/ ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] I did it, haha xenharmonic synth

2012-09-06 Thread Billy Stiltner
wrote: Awesome, glad to see that one of my old patches was incorporated into something so original. Sometimes I think the best thing about programming in Pd is getting to be part of a greater ecosystem of creativity. On Wed, Sep 5, 2012 at 7:10 AM, Billy Stiltner billy.stilt...@gmail.com

Re: [PD] I did it, haha xenharmonic synth

2012-09-05 Thread Billy Stiltner
thanks , the karplus was a last minue addition. I started with lubertdas string patch a couple years ago, added all kinds of stuff that complicated it to make a 12 string xenharmonic. took it out last year, removed all the complicated stuff and put it back in the other night. the drums are from

Re: [PD] still missing from pd

2012-09-04 Thread Billy Stiltner
haha ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] I did it, haha xenharmonic synth

2012-09-04 Thread Billy Stiltner
not shareable yet still workin out a few bugs left in from development and got 6 parameters to add to preset for the karplus strong string sim i added in at the last minute but i think it fits what i had in mind, it's been a long road and probably spurs from ideas i had as a teenager some 25 odd

Re: [PD] [PD-announce] pd 0.43-3 released

2012-07-05 Thread Billy Stiltner
nice on the 04.4, a way to modulate the phase sync sounds good. It sounds pretty good at block size 64 anyways but I guess it would be better faster. I'll give you my ltoa if you will make something so that I can change 1/4 loaded from a textfile into 0.25.

Re: [PD] new sounds for hoedowninaround

2012-06-14 Thread Billy Stiltner
On Mon, May 7, 2012 at 12:27 AM, i go bananas hard@gmail.com wrote: really interesting as always Billy.  I'm hearing a bit of stuff like yours lately, made by various people.  Evolving freeform jams which step well outside the 4/4 looped techno paradigm, but which still keep a solid

Re: [PD] [pd] tables as patch storage

2012-06-14 Thread Billy Stiltner
, 2012 at 7:30 PM, Billy Stiltner billy.stilt...@gmail.com wrote: turing tape machine, haha ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] flatspace, fausttopd, and a new tune

2012-06-14 Thread Billy Stiltner
hey, what's wrong with the knob in flatspace? error ! spelling on the first line. On Thu, Jun 14, 2012 at 11:09 PM, Billy Stiltner billy.stilt...@gmail.com wrote: hey, hat's wrong with the knob in flatspace? the menus are kind of plain and the knob is kinda chunky looking when small but I

[PD] $74 pc on a stick

2012-05-28 Thread Billy Stiltner
http://www.tomshardware.com/news/Cotton-Candy-Rikomagic-MK802-Ubuntu-Android-ARM,15699.html ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] compiling pd-jackclock

2012-05-17 Thread Billy Stiltner
I just want to sync pd and anything else with midi or jack, it seems I cant get anything to hear my strt stop or continue with midi from pd on linux. maybe I would have better luck with jack? sureley i'm not expected to set the bpm in the recieving program and send it a start with osc and expect

[PD] new sounds for hoedowninaround

2012-05-05 Thread Billy Stiltner
All done with pd. The drums are loops appropriately hoedowned. http://soundcloud.com/hoedowninaround Enjoy I have all kinds of issues with pure data at this point but have somehow managed to overlook them. One of the craziest things is the table with name $2$1 haha!

[PD] new Pure Data music - bpinf

2012-05-01 Thread Billy Stiltner
13ed3 fm, some other m, filtering, sample and hold finally snapping at the tuning, mandelbrot and burning ship melody , beat and modulation sequencing http://snd.sc/Ijwtpx ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] [pd] tables as patch storage

2012-04-02 Thread Billy Stiltner
turing tape machine, haha ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] new pure data music

2012-03-28 Thread Billy Stiltner
oops, thanks for the correction Roman. Tyler it might be that UbuntuOne has a streaming limit for non streaming accounts or something else. have you tried viewing source and pasting the urls into vlc? On Tue, Mar 27, 2012 at 12:47 PM, Tyler Leavitt thecryofl...@gmail.comwrote: I'm having

Re: [PD] [PD-ot] Raspberry Pi (was: Re: [OT] openstomp ... PD pedal?)

2012-03-24 Thread Billy Stiltner
GPIO sounds like a microcip PIC io port. On Fri, Mar 23, 2012 at 5:29 PM, dreamer drea...@puikheid.nl wrote: On the RaspberryPi website the question about the absence of audio-input was answered recently: There are no inbuilt Audio ADC’s so there would be a cost adder – everyone was sat on

Re: [PD] OSC strings and Pd symbols

2012-03-23 Thread Billy Stiltner
haha! Using ReBirth is like trying to play an 808 with a long stick.-David Zicarelli ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] Switching Between Multiple Patches for Installation

2012-03-15 Thread Billy Stiltner
Sounds like a winner to me. At one point I had things working with no audio dropouts but then all of a sudden on some patches particularly ones that have a) unresolved sends/receives b) mouse input from gem or via canvas dragging in editable window I get clicks in the audio just by moving the

Re: [PD] Switching Between Multiple Patches for Installation

2012-03-15 Thread Billy Stiltner
forgot to mention that minimiiziing pd and controling from html5canvas/javascript/javaudp does not cause dropouts. also if only using pd to send something else makiing the sound there are no dropouts. iits probably just something i'm overlooking. On Thu, Mar 15, 2012 at 8:34 PM, Billy

Re: [PD] tunetof scl2pd.py

2012-03-12 Thread Billy Stiltner
Actually the error I was getting in scl2pd.py was caused by a newline after the last entry in the scl file. I just checked my corrections to tuntof.pd and it works correctly with non octave repeating scales. Word on the Xenharmonic scene says octave is called equivalence interval.

  1   2   >