Re: [PD] UDOO Quad and Generic Guitar to USB link issues

2014-04-05 Thread Brian Fay
If you haven't tried it already, try increasing the latency in the audio settings (probably not the issue, but worth a shot). Maybe it's only having trouble with duplex audio (simultaneous input and output). Do you have both input and output enabled for your soundcard? Does it work if you only

Re: [PD] [PD-dev] oggread~ not working on pd-extended or libpd on windows.

2014-04-05 Thread IOhannes m zmölnig
On 04/05/2014 05:48 AM, Simon Wise wrote: On 05/04/14 14:21, Martin Peach wrote: I think it's here: http://sourceforge.net/p/pure-data/patches/ that seems to be for pd rather than externals??? it's for pd, pd-extended and externals (if they are maintained in the repository on

Re: [PD] udoo board sound issues

2014-04-05 Thread Dan Wilcox
Ah cool thanks! This is actually the same issue I saw when I briefly tried the hard float image. I'll pick up another sd card and try again ... On Mar 24, 2014, at 5:01 PM, Simon Iten itensi...@gmail.com wrote: nevermind, found the solution. here it is..

[PD] How to Mix 2 audio files into 1?

2014-04-05 Thread Hunter Peress
Can someone point me to a tutorial of how to mix 2 audio files into 1 using pd? -Hunter Peress http://hificorder.com ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] [bag] as sustain pedal

2014-04-04 Thread Alexandre Torres Porres
hi there, I saw thia vanilla [bag] object, and it says it can be used as sustain, but I just couldn't see how. any examples around? cheers ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] [bag] as sustain pedal

2014-04-04 Thread tim vets
for remembering the note-off's to be [flush( -ed when the pedal is released? 2014-04-04 10:40 GMT+02:00 Alexandre Torres Porres por...@gmail.com: hi there, I saw thia vanilla [bag] object, and it says it can be used as sustain, but I just couldn't see how. any examples around? cheers

Re: [PD] UDOO Quad and Generic Guitar to USB link issues

2014-04-04 Thread Carlos Sanchez
Yes, I have tried changing sample rates and it has not solved the issue. The sound card I am using is basically a copy of the Behringer UCG102 guitar to USB interface : http://www.behringer.com/EN/Products/UCG102.aspx On Fri, Apr 4, 2014 at 8:40 AM, tim vets timv...@gmail.com wrote: and what

Re: [PD] [bag] as sustain pedal

2014-04-04 Thread Alexandre Torres Porres
thing is that it forgets if it receives a note off, so maybe it needs [stripnote] to don't let note offs go through 2014-04-04 6:57 GMT-03:00 tim vets timv...@gmail.com: for remembering the note-off's to be [flush( -ed when the pedal is released? 2014-04-04 10:40 GMT+02:00 Alexandre

Re: [PD] [bag] as sustain pedal

2014-04-04 Thread Alexandre Torres Porres
maybe it needs [stripnote] done it that way :) 2014-04-04 11:47 GMT-03:00 Alexandre Torres Porres por...@gmail.com: thing is that it forgets if it receives a note off, so maybe it needs [stripnote] to don't let note offs go through 2014-04-04 6:57 GMT-03:00 tim vets timv...@gmail.com:

[PD] oggread~ not working on pd-extended or libpd on windows.

2014-04-04 Thread Rafael Vega
Hi. I am trying to use [oggread~] external on an application i'm developing with libpd. No problems on mac or linux. Howerver, on windows (xp and 8, 32bit) I keep getting an error message from oggread~ when I try to open an ogg file. Even ogg_read~-help.pd won't work: oggread~: file

Re: [PD] oggread~ not working on pd-extended or libpd on windows.

2014-04-04 Thread Rafael Vega
Follow up: Looking at the code for oggread~, I found that it does the actual opening of the file with if(ov_open(x-x_file, x-x_ov, NULL, -1) 0) on the ov_open documentation it warns windows programmers not to use ov_open but ov_open_callbacks instead [1] and [2] so I changed that line to

Re: [PD] oggread~ not working on pd-extended or libpd on windows.

2014-04-04 Thread Rafael Vega
Even more stuff ;) In the same file, oggread~.c there is a line that reads: if((x-x_file = sys_fopen(filename-s_name, r)) 0) But it should be: if((x-x_file = sys_fopen(filename-s_name, rb)) = 0) Now, to figure out how to submit a patch to pd-extended :P On Fri, Apr 4, 2014 at

Re: [PD] oggread~ not working on pd-extended or libpd on windows.

2014-04-04 Thread Rafael Vega
Forgot to say: this fixes my issue, I can now open and play ogg files. On Fri, Apr 4, 2014 at 8:49 PM, Rafael Vega email.r...@gmail.com wrote: Even more stuff ;) In the same file, oggread~.c there is a line that reads: if((x-x_file = sys_fopen(filename-s_name, r)) 0) But it should

Re: [PD] [PD-dev] oggread~ not working on pd-extended or libpd on windows.

2014-04-04 Thread Martin Peach
I think it's here: http://sourceforge.net/p/pure-data/patches/ Martin On 2014-04-04 21:49, Rafael Vega wrote: Even more stuff ;) In the same file, oggread~.c there is a line that reads: if((x-x_file = sys_fopen(filename-s_name, r)) 0) But it should be: if((x-x_file =

Re: [PD] [PD-dev] oggread~ not working on pd-extended or libpd on windows.

2014-04-04 Thread Simon Wise
On 05/04/14 14:21, Martin Peach wrote: I think it's here: http://sourceforge.net/p/pure-data/patches/ that seems to be for pd rather than externals??? maybe a patch to debian package pd-pdogg, which could then get upstream, since for some (especially older) externals this may be the most

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Wed, 2014-04-02 at 22:05 -0300, Alexandre Torres Porres wrote: So, tried other things, and I see it won't be able to deal with messages including $0 like [qlist]. So the reason must be not related to [qlist] or [textfile], but the way Pd handles (or doesn't handle) $0 in messages. Yes.

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Wed, 2014-04-02 at 19:00 -0300, Alexandre Torres Porres wrote: Although I assume I don't think I get the hassle it'd be to do that. I'm still struggling to see what could be so tricky to make $0 possible to work in messages, sorry :P The reason is most likely not the difficulty to

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Wed, 2014-04-02 at 20:49 -0300, Alexandre Torres Porres wrote: By the way, haven't been really able to make it work well with [textfile]. If you get a symbol with $0-symbol from a text file, you can't use it to work as an address for [send]. Miller proposed to use the new [text] class

Re: [PD] [qlist] and locality

2014-04-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-04-03 03:05, Alexandre Torres Porres wrote: So, tried other things, and I see it won't be able to deal with messages including $0 like [qlist]. So the reason must be not related to [qlist] or [textfile], but the way Pd handles (or

[PD] Soundfiler not behaving as expected

2014-04-03 Thread Eric Lyon
Hi All, in Pd 0.45.4 vanilla I'm getting the following behavior from soundfiler, using the help file: 1. Hit 2nd message down to read full bell sound into array2 - works fine. 2. Hit 4th message down to write an AIFF file to /tmp - resulting sound file is unreadable, apparently due to an

Re: [PD] Soundfiler not behaving as expected

2014-04-03 Thread Pagano, Patrick
I suggest you use player~ by Eric Lyon for stable playback :-) I cannot speak to the bad header though Sent from my iPhone On Apr 3, 2014, at 10:03 AM, Eric Lyon audiodid...@gmail.commailto:audiodid...@gmail.com wrote: Hi All, in Pd 0.45.4 vanilla I'm getting the following behavior from

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
On 04/03/2014 04:00 AM, IOhannes m zmoelnig wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-04-03 03:05, Alexandre Torres Porres wrote: [...] btw: i would probably even recommend to use explicit *connections* (rather than send/receive pairs) for anything local. then you

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
* when you run into nameclashes, you know your project has outgrown Pd and it's time to choose another language what's a nameclash? (maybe I haven't outgrown Pd yet) 2014-04-03 13:00 GMT-03:00 Jonathan Wilkes jancs...@yahoo.com: On 04/03/2014 04:00 AM, IOhannes m zmoelnig wrote:

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
Oops, I'll be dammed, but [text] doesn't seem to handle $0 in the same way. Although it looks like a super [qlist], giving [text] a $0 for an address symbol, such as $0-test1, turns it into 0-test1... so no deal for it. I'm assuming it's not supposed to be something regarding an object design.

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

2014-04-03 Thread Alexandre Torres Porres
Hi there, I see there's a new [text] object in Pd 0.45 that defines, opens and edits text. This raises some doubts about the Text Editor option in the Edit Menu. I never knew what it was for, and I'm still clueless. How do you use it? Is there any example around I missed? cheers

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
For example, if you have two help patches open and each has an array inside it named array1.  One of the help patches will work, and the other won't.   That's because Put menu arrays assume you only have one array by that name.   Pd will use the first one it finds (probably the first one you

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
thanks for explaining it all imagine trying to design something like that which is also backwards compatible with the crude namespacing tools that already exist in Pd. It's not possible ok, here's where I'm a bit confuse. You're not saying it'd be impossible to make messages inherit the $0

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Don, 2014-04-03 at 16:13 -0300, Alexandre Torres Porres wrote: thanks for explaining it all imagine trying to design something like that which is also backwards compatible with the crude namespacing tools that already exist in Pd. It's not possible ok, here's where I'm a bit

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Don, 2014-04-03 at 12:00 -0400, Jonathan Wilkes wrote: * when you run into nameclashes, you know your project has outgrown Pd and it's time to choose another language That is a pretty bold statement. I never ever run into name clashes, no matter how big the project was/is. The

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
On 04/03/2014 04:14 PM, Roman Haefeli wrote: On Don, 2014-04-03 at 12:00 -0400, Jonathan Wilkes wrote: * when you run into nameclashes, you know your project has outgrown Pd and it's time to choose another language That is a pretty bold statement. It's meant as a shortcut to avoid wasting

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
Wow, you keep beating that horse after its dead for quite a while by now I don't think this debate is going lead anywhere please, cope with my lack of knowledge in computer science/languages jargons. All I'm doing is asking to learn more about it and get what you guys mean. I'm not debating,

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Don, 2014-04-03 at 17:33 -0400, Jonathan Wilkes wrote: So yes, it's rather extreme of me to advise users to just use global symbols and switch languages when they run into problems. But I think there's an assumption on this list that most users know enough about other programming

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
On 04/03/2014 03:13 PM, Alexandre Torres Porres wrote: thanks for explaining it all imagine trying to design something like that which is also backwards compatible with the crude namespacing tools that already exist in Pd. It's not possible ok, here's where I'm a bit confuse. You're not

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
Hi Jonathan, I like it too, and the pedagogical concern is what gets me the most. I find new users to be reluctant to the clunkiness. Had never heard of the Nova system, is it available somewhere? Seems it's not built on the core of Pd anyway, right? thanks 2014-04-03 19:03 GMT-03:00 Jonathan

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
On 04/03/2014 05:42 PM, Roman Haefeli wrote: On Don, 2014-04-03 at 17:33 -0400, Jonathan Wilkes wrote: So yes, it's rather extreme of me to advise users to just use global symbols and switch languages when they run into problems. But I think there's an assumption on this list that most users

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
On 04/03/2014 06:33 PM, Alexandre Torres Porres wrote: Hi Jonathan, I like it too, and the pedagogical concern is what gets me the most. I find new users to be reluctant to the clunkiness. Had never heard of the Nova system, is it available somewhere? Seems it's not built on the core of Pd

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Don, 2014-04-03 at 18:32 -0300, Alexandre Torres Porres wrote: Wow, you keep beating that horse after its dead for quite a while by now I don't think this debate is going lead anywhere please, cope with my lack of knowledge in computer science/languages jargons. I'm sorry. I

Re: [PD] [qlist] and locality

2014-04-03 Thread Miller Puckette
I almost meant that :) you still have to send [text sequence] the values of the $ variables you want to use (starting with $1). But the ability to instance-ize sequences is there. cheers M On Thu, Apr 03, 2014 at 08:38:16AM +0200, Roman Haefeli wrote: On Wed, 2014-04-02 at 20:49 -0300,

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
not confusing, thanks 2014-04-03 19:54 GMT-03:00 Roman Haefeli reduz...@gmail.com: On Don, 2014-04-03 at 18:32 -0300, Alexandre Torres Porres wrote: Wow, you keep beating that horse after its dead for quite a while by now I don't think this debate is going lead anywhere

Re: [PD] [qlist] and locality

2014-04-03 Thread Roman Haefeli
On Don, 2014-04-03 at 18:41 -0400, Jonathan Wilkes wrote: On 04/03/2014 05:42 PM, Roman Haefeli wrote: On Don, 2014-04-03 at 17:33 -0400, Jonathan Wilkes wrote: So yes, it's rather extreme of me to advise users to just use global symbols and switch languages when they run into problems.

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
I almost meant that :) you still have to send [text sequence] the values of the $ variables you want to use (starting with $1). But the ability to instance-ize sequences is there. hmmm, are you pointing to a solution where I can send $0 to textfile and it would generate the number and do the

Re: [PD] [qlist] and locality

2014-04-03 Thread Miller Puckette
Yeah - for instance use a [pack] object to get a list of $ substtution values into [text sequence] - then one of the arguments to [pcak] can be $0. cheers M On Thu, Apr 03, 2014 at 08:44:02PM -0300, Alexandre Torres Porres wrote: I almost meant that :) you still have to send [text sequence] the

[PD] UDOO Quad and Generic Guitar to USB link issues

2014-04-03 Thread Carlos Sanchez
Hello PD-list, I am currently working on my semester project which is a guitar multi-effect pedal using the UDOO Quad and PD. I got everything up and running on the Linaro Ubutu 12.04 LTS build provided by UDOO and I am having strange results with PD. The soundcard I am using works normally when

Re: [PD] [qlist] and locality

2014-04-03 Thread Jonathan Wilkes
On 04/03/2014 07:13 PM, Roman Haefeli wrote: [...] Thanks for your remarks. You probably caught me in the act of feeling comfortable in an actually not so comfortable situation. It's true that people get accustomed to the environment they grow up in. I've never challenged myself into thinking

Re: [PD] Soundfiler not behaving as expected

2014-04-03 Thread Chris Clepper
I can confirm this happens for me for both soundfiler and writesf~ (Mac 10.6.8 and PD 0.45-4). Even after applying a new AIFF header in soundhack, the files are just noise. Honestly, I've only ever used WAV files with Pd before testing this just now! PS - Eric, I bought your Max/Pd external

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
I think I got it, will try as soon as a I can. I have to properly study this new object first anyway. If I got it, that looks like a workaround I thought about before, still thinking of [qlist], like storing all the sequence in the patch and then send it to [qlist], where I could get the patch $0

Re: [PD] [qlist] and locality

2014-04-03 Thread Alexandre Torres Porres
HEY, I SEE HOW [text] WORKS NOW Awesome, you can easily send arguments to it. Perfect 2014-04-03 20:59 GMT-03:00 Miller Puckette m...@ucsd.edu: Yeah - for instance use a [pack] object to get a list of $ substtution values into [text sequence] - then one of the arguments to [pcak] can be

Re: [PD] [qlist] and locality

2014-04-02 Thread Roman Haefeli
On Mon, 2014-03-31 at 18:54 -0300, Alexandre Torres Porres wrote: Hi there, I can't get messages from [qlist] to an object with $0. Is this really a problem? You can: [nbx\ | [t b f] | \ [pack $0 f] | [add 500 $1-bla $2] | [qlist] [r $0-bla] | [print] The thing is you have to expand $0

Re: [PD] [qlist] and locality

2014-04-02 Thread Roman Haefeli
On Tue, 2014-04-01 at 17:20 -0300, Alexandre Torres Porres wrote: you might want to see the messages sent by [qlist] the same as messages in msgboxes, where you don't have $0-expansion either Bummer. anyway, this brings me to a different topic then. Why is there this lack of expansion

Re: [PD] [qlist] and locality

2014-04-02 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-04-02 08:57, Roman Haefeli wrote: On Mon, 2014-03-31 at 18:54 -0300, Alexandre Torres Porres wrote: Hi there, I can't get messages from [qlist] to an object with $0. Is this really a problem? You can: [pack $0 f] | [add 500 $1-bla

Re: [PD] [qlist] and locality

2014-04-02 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-04-02 09:08, Roman Haefeli wrote: You're asking for inconsistency: ++ fmsda IOhannes -BEGIN PGP SIGNATURE- Version: GnuPG v1 Comment: Using GnuPG with Icedove - http://www.enigmail.net/

Re: [PD] [qlist] and locality

2014-04-02 Thread Miller Puckette
See also the 'text' object in 0.45 that does $ expansion :) M On Wed, Apr 02, 2014 at 09:45:56AM +0200, IOhannes m zmoelnig wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-04-02 08:57, Roman Haefeli wrote: On Mon, 2014-03-31 at 18:54 -0300, Alexandre Torres Porres wrote:

Re: [PD] [qlist] and locality

2014-04-02 Thread Alexandre Torres Porres
See also the 'text' object in 0.45 that does $ expansion :) on it ;) Now, so it seems, at least [qlist] could be upgarded any time to do the expansion, right? That wouldn't hurt, would it? Cheers 2014-04-02 10:26 GMT-03:00 Miller Puckette m...@ucsd.edu: See also the 'text' object in 0.45

Re: [PD] [qlist] and locality

2014-04-02 Thread Jonathan Wilkes
On 04/02/2014 03:08 AM, Roman Haefeli wrote: On Tue, 2014-04-01 at 17:20 -0300, Alexandre Torres Porres wrote: you might want to see the messages sent by [qlist] the same as messages in msgboxes, where you don't have $0-expansion either Bummer. anyway, this brings me to a different topic

Re: [PD] [qlist] and locality

2014-04-02 Thread IOhannes m zmölnig
On 04/02/2014 05:43 PM, Alexandre Torres Porres wrote: See also the 'text' object in 0.45 that does $ expansion :) on it ;) Now, so it seems, at least [qlist] could be upgarded any time to do the expansion, right? That wouldn't hurt, would it? or you could build your own [qlist] based on

Re: [PD] [qlist] and locality

2014-04-02 Thread Alexandre Torres Porres
or you could build your own [qlist] based on [text]... no need to change the old and rusty code of the original [qlist]. I get the workaround, but [qlist] is built for sequencing and simpler for that (like, it can easily set the tempo), and I still think it wouldn't hurt to make it more

Re: [PD] [qlist] and locality

2014-04-02 Thread Alexandre Torres Porres
By the way, haven't been really able to make it work well with [textfile]. If you get a symbol with $0-symbol from a text file, you can't use it to work as an address for [send]. 2014-04-02 19:00 GMT-03:00 Alexandre Torres Porres por...@gmail.com: or you could build your own [qlist] based on

Re: [PD] [qlist] and locality

2014-04-02 Thread Alexandre Torres Porres
So, tried other things, and I see it won't be able to deal with messages including $0 like [qlist]. So the reason must be not related to [qlist] or [textfile], but the way Pd handles (or doesn't handle) $0 in messages. The only workaround is to forcely insert $0 with [makefilename], but then all

Re: [PD] [qlist] and locality

2014-04-01 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-03-31 23:54, Alexandre Torres Porres wrote: Hi there, I can't get messages from [qlist] to an object with $0. Is this really a problem? yes (at least: yes, i expect that to make problems; you might want to see the messages sent by [qlist]

Re: [PD] [OT] Cheap and strong speakers for piano stairs

2014-04-01 Thread Jack
Hello Dominic, Thanx for your answer. Do you have an URL to check the model ? ++ Jack Le 30/03/2014 23:26, Dominic Melville a écrit : Their own brand active Thomann pa speakers are actually pretty good. Range in size from quite small to large models and last time I looked were very cheap.

Re: [PD] [OT] Pd to play sounds simultaneously on 8 speakers with cheap computer

2014-04-01 Thread Winfried Ritsch
Just started some docu on puredata.info especially for BBB (to be updated next week with new mor up to date reports). http://puredata.info/docs/embedded/ http://puredata.info/docs/embedded/bbb/sound/ cheapest 8 channel USB sound-device I know of and working: Logilink 7.1. Cutting the power

Re: [PD] [qlist] and locality

2014-04-01 Thread Alexandre Torres Porres
you might want to see the messages sent by [qlist] the same as messages in msgboxes, where you don't have $0-expansion either Bummer. anyway, this brings me to a different topic then. Why is there this lack of expansion in messages? I think I've raised this issue sometime ago. Sorry I don't

Re: [PD] Pd-L2Ork [pd~] using real adc

2014-04-01 Thread Ivica Ico Bukvic
Again, thanks for the report. I located the problem and fixed it in the latest git commit. Basically, it was a regression due to the new -unique flag that was added to startup flags to pd-l2ork that made it by default open all new patches in the existing instance, now it opens them according

Re: [PD] [OT] Multichannel output with presonus firepod on windows, how?

2014-03-31 Thread Rich E
Ah, I see there is a 'multiple devices' tab that I missed. Also noticed that if I specify the channel count to be 4 with the device that is representing channels 1 and 2, I can still send to the third and fourth inlets on [dac~] woah. Apologies for the noise On Mon, Mar 31, 2014 at

Re: [PD] pd~: can't stat ...

2014-03-31 Thread Cyrille Henry
can you post the result of the command : locate '/pd~.pd_linux' I think your pd~ binary is not when pd is looking at. cheers c Le 23/03/2014 18:47, f...@xaok.org a écrit : hi, when testing egregore i encountered a problem with an instrument which uses pd~ object. log reads: pd~ version

[PD] [PD-announce] [JOB] Pure Data Guru for Early Stage Startup - EEG Sonification

2014-03-31 Thread Mikey Siegel
BioFluent Technologies http://biofluent.com/ is a Santa Cruz, CA based early stage startup developing a consumer technology centered around the sonification of brain waves (EEG data). We are creating a soundtrack for the mind that needs to be appealing to a mainstream audience. We're looking for

[PD] Alternatives to arraycopy

2014-03-31 Thread Johann Diedrick
Hi Pd list- I have a question about the object arraycopy. It works great, but I'm copying an array with 1323 points (5 minutes of audio at 44,100 hz) and it seems very slow. In particular, my patch seems to lock up for about 2-3 seconds when making the copy. The audio stops for those 2

Re: [PD] Alternatives to arraycopy

2014-03-31 Thread Miller Puckette
Just play it (tabplay~) into the other one (tabrecord~). You can do this at many times 'normal' speed if you want by putting it in a subpatch with a high sample rate. cheers Miller On Mon, Mar 31, 2014 at 08:58:22AM -0400, Johann Diedrick wrote: Hi Pd list- I have a question about the

[PD] Pd-L2Ork [ii]

2014-03-31 Thread puredata
When using [ii] in a patch, even with [import iemlib] - i have to use [init] once for [ii] to be found (need to save and reload the patch). ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

[PD] Looking for some processing tools for audio mixing

2014-03-31 Thread Christoph Kuhr
Hi everyone, at the moment I am using some analog outboard equipment to assist me with my audio mixing. Namley its the DBX Subharmonic Syntheshizer and the SPL Transient Designer. I want to have my FX chain all digital. So my question is, if there are some patches to do those things within PD

Re: [PD] Alternatives to arraycopy

2014-03-31 Thread Johann Diedrick
Thank you very much! WIll try this solution out :) On Mon, Mar 31, 2014 at 9:02 AM, Miller Puckette m...@ucsd.edu wrote: Just play it (tabplay~) into the other one (tabrecord~). You can do this at many times 'normal' speed if you want by putting it in a subpatch with a high sample rate.

Re: [PD] Pd-L2Ork [ii]

2014-03-31 Thread Ivica Ico Bukvic
Thanks for the report. It is possible that pd-l2ork is using an older version of iemlib as I've not synced that source in a while. Other option is that there is something potentially funny with the way externals are loaded. Let me investigate... Just to make sure, is ii an abstraction or an

Re: [PD] Pd-L2Ork [ii]

2014-03-31 Thread puredata
init_class = class_new(gensym(init), (t_newmethod)init_new, (t_method)init_free, sizeof(t_init), 0, A_GIMME, 0); class_addcreator((t_newmethod)init_new, gensym(ii), A_GIMME, 0); Will continue to test Pd-L2Ork (I had some difference with pd-extended regarding -path (not all my

Re: [PD] Alternatives to arraycopy

2014-03-31 Thread Jonathan Wilkes
I used some simple data mining techniques to infer the following: you didn't actually test those objects in a patch before writing your response. [ads based on this inference go here] -Jonathan On Monday, March 31, 2014 9:05 AM, Miller Puckette m...@ucsd.edu wrote: Just play it (tabplay~)

Re: [PD] Alternatives to arraycopy

2014-03-31 Thread Miller Puckette
Guilty as charged :) ... tabwrite~, not tabrecord~. And BTW this is also the best way I know to load soundfiles into a table from disk without blocking Pd... using readsf~ in place of tabplay~. cheers M On Mon, Mar 31, 2014 at 08:17:25AM -0700, Jonathan Wilkes wrote: I used some simple data

Re: [PD] Alternatives to arraycopy

2014-03-31 Thread Roman Haefeli
Hehe, I also thought: Wow, I have to check out the new [tabrecord~]. For the record: Miller most likely meant [tabwrite~] instead of [tabrecord~]. (According to the difference between [tabread~] and [tabplay~], [tabrecord~] would be the more suitable name for [tabwrite~]) Roman On Mon,

Re: [PD] Pd-L2Ork [ii]

2014-03-31 Thread IOhannes m zmölnig
On 03/31/2014 05:09 PM, Jonathan Wilkes wrote: a) click [loadbang] with the mouse to output a bang. (This is how Max/MSP solves this problem, too.) b) select all the objects to which you'd like to connect, then draw a connection from [bng] to one of them. In Pd-l2ork this will make a

[PD] [qlist] and locality

2014-03-31 Thread Alexandre Torres Porres
Hi there, I can't get messages from [qlist] to an object with $0. Is this really a problem? cheers ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Pd-L2Ork [ii]

2014-03-31 Thread Alexandre Torres Porres
same happens in pd-extended here on a mac 2014-03-31 17:43 GMT-03:00 pured...@11h11.com: When using [ii] in a patch, even with [import iemlib] - i have to use [init] once for [ii] to be found (need to save and reload the patch). ___

Re: [PD] Pd-L2Ork [ii]

2014-03-31 Thread Jonathan Wilkes
On 03/31/2014 12:25 PM, IOhannes m zmölnig wrote: On 03/31/2014 05:09 PM, Jonathan Wilkes wrote: a) click [loadbang] with the mouse to output a bang. (This is how Max/MSP solves this problem, too.) b) select all the objects to which you'd like to connect, then draw a connection from [bng] to

[PD] Pd-L2Ork [pd~] using real adc

2014-03-31 Thread puredata
Hi, So for the [ii] I just added [init] somewhere and now all [ii] are found. No big deal! But I think I have found something a little bit more important (well for me at least): [pd~ start effectUnitOut.pd | [pd~ -ninsig 2 -noutsig 2 -fifo 2] the effectUnitOut.pd [adc~] is using my real

Re: [PD] Looking for some processing tools for audio mixing

2014-03-31 Thread Simon Wise
On 01/04/14 00:20, Christoph Kuhr wrote: Hi everyone, at the moment I am using some analog outboard equipment to assist me with my audio mixing. for audio mixing to replace an analogue mixer you are probably better off looking at ardour, or any other digital audio workstation. You can of

Re: [PD] Pd-L2Ork [pd~] using real adc

2014-03-31 Thread Ivica Ico Bukvic
Thanks for the report. What is the exact expected behavior and what is inside the pd~ abstraction? BTW, I think the problem with the other issue is that ii is a synonym for init and I think I had this problem before where an object needs to be instantiated before its synonym is accepted. It may

[PD] windows and script

2014-03-30 Thread Philippe Boisnard
Hello it's the first one, that I work on windows (7 and XP I think) for my artwork, on OSX I use shell to launch some bash-script. I have created on windows the same script in batch but How can I launch thoses scripts ? thx p ___

Re: [PD] windows and script

2014-03-30 Thread Nicolas Lhommet
Hello Philippe, [motex/system] in Pd extended can execute DOS commands, but you have to deal with the DOS path : You can modify it in System/Advanced properties - Environment Variables - System variables - Path Or you can simply put your scripts in the same folder than the patch you

Re: [PD] [OT] Pd to play sounds simultaneously on 8 speakers with cheap computer

2014-03-30 Thread Jack
Le 29/03/2014 15:43, Simon Wise a écrit : On 29/03/14 22:56, Jack wrote: Hello, Is it possible to use BeagleBoard, Raspberry Pi, Udoo or others without dropout with this configuration : 8 IR sensors 1 BeagleBoard (or Raspberry Pi, or Udoo or others) with Pd and linux 1 sound cards with 8

[PD] [OT] Cheap and strong speakers for piano stairs

2014-03-30 Thread Jack
Hello, I would like to use a Raspberry Pi with esi gigaport hd+ to broadcast sounds for a piano stairs (8 speakers). Do you know a good model of amplified speaker or speaker+PowerAmp for this purpose ? A cheap suggestion is welcome. Best! ++ Jack

[PD] [OT] Multichannel output with presonus firepod on windows, how?

2014-03-30 Thread Rich E
Hi all, I'm not too familiar with using dedicated audio interfaces on Windows, but I find myself trying to get more than two channels to output on Windows in Pd with a Presonus Firepod, and all it allows for is stereo. Instead of one device that has 10 ins and 10 outs, I get 5 devices that each

[PD] [OT] Pd to play sounds simultaneously on 8 speakers with cheap computer

2014-03-29 Thread Jack
Hello, Is it possible to use BeagleBoard, Raspberry Pi, Udoo or others without dropout with this configuration : 8 IR sensors 1 BeagleBoard (or Raspberry Pi, or Udoo or others) with Pd and linux 1 sound cards with 8 output 8 speakers like this : 8 IR sensors - Beagleboard - sound card - 8

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] [OT] Pd to play sounds simultaneously on 8 speakers with cheap computer

2014-03-29 Thread Simon Wise
On 29/03/14 22:56, Jack wrote: Hello, Is it possible to use BeagleBoard, Raspberry Pi, Udoo or others without dropout with this configuration : 8 IR sensors 1 BeagleBoard (or Raspberry Pi, or Udoo or others) with Pd and linux 1 sound cards with 8 output 8 speakers like this : 8 IR sensors -

[PD] comments as one long symbol

2014-03-29 Thread Jonathan Wilkes
That way we could implement a simple translation system. When Pd loads a patch it looks for a translation file in the local language that share the same base file name as the patch.  If there isn't a translation file then a comment would load as is.  If there is a translation file for the

Re: [PD] ANN: New Pd-L2Ork x86_64 and Raspberry Pi 20140319 release candidate

2014-03-29 Thread puredata
Hi, I wanted to try Pd-L2Ork, but i think it's not possible to install it along side of pd-extended? Unpacking pd-l2ork (from pd-l2ork-x86_64-20131123.deb) ... dpkg: error processing pd-l2ork-x86_64-20131123.deb (--install): trying to overwrite '/usr/lib/pkgconfig/Gem.pc', which is also in

Re: [PD] patch wanted: loop station

2014-03-28 Thread puredata
Yes I would like to have a solution within PD. The Meh patch is very very nice, but I am not sure how cross-fading and quantization is implemented (will try to contact the author). Will take a look at ipoke~. Will put my patch on github, maybe someone will want to join me in making a loop

Re: [PD] patch wanted: loop station

2014-03-28 Thread puredata
if anyone wants to work on this: https://github.com/patricksebastien/loopStationPD fork pull request ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] patch wanted: loop station

2014-03-27 Thread Roman Haefeli
On Thu, 2014-03-27 at 05:09 -0400, pured...@11h11.com wrote: Not sure exactly what is making the click / glitch in my patches. I think the fact that I bring down the jack buffer to 64 didn't help... but I cannot be sure. I am still looking the archive / search engine to find a loop

Re: [PD] patch wanted: loop station

2014-03-27 Thread Julian Brooks
NOt quite what you're after but Katja's SliceJockey is my favourite looping code for Pd http://www.katjaas.nl/slicejockey/slicejockey.html Certainly worth checking how she's done it. Yeah sooperlooper, I used to make use of that before Pd. It's good stuff. Jb On 27 March 2014 07:14, Roman

Re: [PD] patch wanted: loop station

2014-03-27 Thread Will -
This one at least solves the start/end glitch and it's a really solid looper, could be a good place to start:http://puredata.hurleur.com/sujet-5021-sound-sound-looper-clear-option If you want quantisation then maybe the recording part should somehow fill a sequence of arrays with what you want

Re: [PD] patch wanted: loop station

2014-03-27 Thread patrice colet
hello roman, there are several ways to sync audio loops, in most methods we try to read audio samples in a way that they are in sync by changing read speed or chunk size, or stretching it with fft, or by making slices with bonk~'s attack detection. The last methods allows to quantize

Re: [PD] patch wanted: loop station

2014-03-27 Thread Julian Brooks
As Katja mentions on the hurleur post you may also find that [ipoke] could well be your friend here. On 27 March 2014 10:39, Will - willai...@hotmail.com wrote: This one at least solves the start/end glitch and it's a really solid looper, could be a good place to start:

<    1   2   3   4   5   6   7   8   9   10   >