[PD] Is the source server down?

2023-09-12 Thread Samuel Burt
Hi. Having a problem with puredata.info. I'm trying to access https://msp.puredata.info/Software/pd-0.54-0.src.tar.gz, but it's failing. The only link on the releases page for 0.54-0 that works for me is Debian because it is hosted elsewhere. Just want to make sure the maintainers know. Maybe the

[PD] hidio: can't load library

2022-12-11 Thread Samuel Burt
Hi, Pd list. I have a student who was trying to use hidio in Pd in Windows. We have 64-bit Pd installed and we installed hidio with Deken, but we can't get the declare object to load it. When we added it to startup items, Pd printed "hidio: can't load library". There was discussion about the

Re: [PD] Max number of panels in Help Browser

2022-08-14 Thread Samuel Burt
included the PR in my pd fork regardless: > https://github.com/sebshader/pdnext/releases(if on linux you have to > compile yourself.. use the current master branch)alternatively, you might > be able to just take helpbrowser.tcl from my PR and move it into your pd > install location (wherever t

[PD] Max number of panels in Help Browser

2022-08-12 Thread Samuel Burt
Is the Help Browser limited to showing only six panels? or is this a limitation of one's desktop environment? I'm considering switching from pd-tutorial to using the else library for teaching Pd fundamentals, but the else library has directories like

[PD] Pd, pipewire, and MIDI

2022-04-28 Thread Samuel Burt
labels like UMC404HD and MPKmini2, but I only recently switched to Linux as my daily driver and hadn't experimented with MIDI yet. Thanks to everyone who helped me to learn more about this subject. Am 28. April 2022 15:37:31 MESZ schrieb Samuel Burt https://lists.puredata.info/listinfo/pd-list

Re: [PD] Pd, pipewire, and MIDI

2022-04-28 Thread Samuel Burt
Still no luck compiling with alsa-midi support. I must still be missing something. Is this the correct configuration to compile? ./configure --enable-jack --disable-oss --enable-portmidi Is portmidi MIDI through alsa? That's how it is described on the portmidi site. Pd doesn't have an

Re: [PD] Pd, pipewire, and MIDI

2022-04-27 Thread Samuel Burt
ports instead of ALSA. Here's my current configuration: ./configure --enable-jack --disable-oss --disable-portaudio --enable-alsa Is there a separate flag for alsa-midi? I don't see any other relevant flags in ./configure --help. Sam Am 27. April 2022 19:20:42 MESZ schrieb Samuel Burt https

[PD] Pd, pipewire, and MIDI

2022-04-27 Thread Samuel Burt
Pop_OS just changed over to pipewire as its audio backend. It's working great with Pd, but I can't seem to get MIDI working. I have an Akai MPK mini connected, but the only things that show up in MIDI Settings are /dev/midi1 and /dev/midi2. Do I need to compile Pd with other flags? Sam

[PD] ​Re: phasor~ phase reset detection

2022-03-16 Thread Samuel Burt
Here's how I like to do it these days: [phasor~] | [expr~ $v1 < 0.5] | [snapshot~] (with [bang~] | [change] | [sel 1] | BANG! If you need it to be sample accurate, you can set [block~ 1]. Even better if you can keep it all in the signal domain and skip the [snapshot~], but it depends on

Re: [PD] plugin.tcl not changing anything, linux

2022-03-04 Thread Samuel Burt
2 > Date: Fri, 4 Mar 2022 09:08:11 +0100 > From: IOhannes m zmoelnig > To: pd-list@lists.iem.at > Subject: Re: [PD] plugin.tcl not changing anything, linux > Message-ID: <45bec37a-eccb-402d-d7bb-f02b41992...@iem.at> > Content-Type: text/plain; charset="utf-8"; Fo

Re: [PD] plugin.tcl not changing anything, linux

2022-03-03 Thread Samuel Burt
Mar 2022 16:10:20 +0100 > From: IOhannes m zmoelnig > To: pd-list@lists.iem.at > Subject: Re: [PD] plugin.tcl not changing anything, Linux > Message-ID: <454abfa4-0c48-ad66-fff9-71cc36b84...@iem.at> > Content-Type: text/plain; charset="utf-8"; Format="flowed&q

[PD] plugin.tcl not changing anything, linux

2022-03-03 Thread Samuel Burt
> On 3/3/22 15:59, Samuel Burt wrote: > > Hi, list. > > > > In Pop_OS (Debian derivative), I created a file called > > *canvasgrey-plugin.tcl* and populated it with: > > > > set ::canvas_fill "gray75" > > set ::text_color &qu

[PD] plugin.tcl not changing anything, Linux

2022-03-03 Thread Samuel Burt
Hi, list. In Pop_OS (Debian derivative), I created a file called *canvasgrey-plugin.tcl* and populated it with: set ::canvas_fill "gray75" set ::text_color "#222" I've openned Pd, created new windows, saved the preferences, but seen no change in the canvas or text color. Any suggestions? This

Re: [PD] audio rate shift register abstraction with Pd vanilla

2022-02-22 Thread Samuel Burt
for anyone who is looking for an audio rate shift register. Sam On Tue, Feb 22, 2022 at 5:08 PM Samuel Burt wrote: > Hi, all. > > I'm having a problem with an abstraction I've created to produce a shift > register at the audio rate. > > Here's a picture of the patch and a hel

[PD] audio rate shift register abstraction with Pd vanilla

2022-02-22 Thread Samuel Burt
Hi, all. I'm having a problem with an abstraction I've created to produce a shift register at the audio rate. Here's a picture of the patch and a help patch explaining how it works. https://raw.githubusercontent.com/TricksterSam/Personal-Pure-Data-Development/main/shiftregister~.png Also,

Re: [PD] ​fan-out (was Re: Pd-list Digest, Vol 203, Issue 12)

2022-02-10 Thread Samuel Burt
; charset="utf-8"; Format="flowed" > > > hi. > > it would be super-cool if you could change the subject to something > meaningful before replying to a digest mail. > > On 2/10/22 14:39, Samuel Burt wrote: > > Having used Pd for two decades, this still ca

Re: [PD] Pd-list Digest, Vol 203, Issue 12

2022-02-10 Thread Samuel Burt
Having used Pd for two decades, this still catches me occasionally. I was only able to debug the problem because I knew this could be an issue. Guess the UI doesn't allow for some kind of subtle indication that you've fanned connections from an outlet. Would be nice though if a little "x2", "x3",

Re: [PD] [midifile]

2022-02-09 Thread Samuel Burt
As with most unpredictable problems in pd, this one was solved with a trigger object banging a float so the velocity could be set before the note. I've had this problem for days and solved it just after posting to the list. On Wed, Feb 9, 2022 at 12:52 PM Samuel Burt wrote: > I'm work

[PD] [midifile]

2022-02-09 Thread Samuel Burt
I'm working with [midifile] to create algorithmic scores from analog-style synthesis models. Really I'm at the beginning stages of doing so. My flow is to generate data, write it into a MIDI file, and then open it in Finale to see the results. Unfortunately, I'm seeing an accumulation of previous

[PD] save MIDI with [text] or [textfile]

2022-02-09 Thread Samuel Burt
Hi, list. Has anyone made an external to create MIDI files with [text] or [textfile]? Is this even possible? I'm only familiar with MIDI messages. I don't know about other information in a MIDI file like tempo, time signature, and metadata. Could it be created as text or is this impossible? It

Re: [PD] externals not added to help browser Pd 0.52.1

2022-01-24 Thread Samuel Burt
Nevermind. There's an externals folder in the Help Browser! I got used to seeing them all listed separately. I like this behavior. Hope my confusion and realization helps someone else who comes looking. On Mon, Jan 24, 2022, 11:34 AM Samuel Burt wrote: > Hi, list. > > Problem: I can

[PD] externals not added to help browser Pd 0.52.1

2022-01-24 Thread Samuel Burt
Hi, list. Problem: I can download externals with deken and load them in Pd, but they don't show up in the Help Browser even after restarting Pd. Context: I installed 64-bit Pd from source with jack support on Pop!_OS 21.10, 64-bit running GNOME 40.4.0. I compiled it with autotools and my only

[PD] Gem on dgpu

2021-10-28 Thread Samuel Burt
Hi, all. Is there a way to verify that Gem is running on a dedicated graphics card if you are using a computer with both Intel and Nvidia graphics? Running Windows 10 on a Surface Book 2. Can I specify which card to use? Sam ___ Pd-list@lists.iem.at

Re: [PD] PInstrument, modular synthesis on Raspberry Pi

2021-05-21 Thread Samuel Burt
I made a quick and dirty demonstration video so people can see what PInstrument looks like. Hope this is useful. https://www.youtube.com/watch?v=4OKeFUdwkBM=PLgyLwxm56Dvqr4tt8lrNM1o7uOgnfDGMi Cheers, Sam On Tue, May 18, 2021 at 3:44 PM Samuel Burt wrote: > Hi, list. Thought some of you mi

[PD] PInstrument, modular synthesis on Raspberry Pi

2021-05-18 Thread Samuel Burt
Hi, list. Thought some of you might be interested in this. https://github.com/TricksterSam/PInstrument I've shared my code for my PInstrument, a set of modules for audio synthesis built in Pure Data designed to run on a small touch screen. Specifically, the interface is designed to work on a

Re: [PD] ignore hidden files from hcs/folder_list

2021-05-05 Thread Samuel Burt
[!.]*.wav( > or > [symbol subdirectory/[!.]*.wav( > > -seb > > -Original Message- > From: Samuel Burt > To: Pd-list > Sent: Tue, May 4, 2021 6:07 am > Subject: [PD] ignore hidden files from hcs/folder_list > > Hi, all. > > Does anyone have a s

Re: [PD] ignore hidden files from hcs/folder_list

2021-05-04 Thread Samuel Burt
Same directory. These samples were created by someone else, so I don't know what program created them. On Tue, May 4, 2021, 10:39 AM Dan Wilcox wrote: > I'm interested in more info about this behavior. I'm only aware of macOS > Finder creating .DS_Store files and temp directories so Spotlight

[PD] ignore hidden files from hcs/folder_list

2021-05-04 Thread Samuel Burt
Hi, all. Does anyone have a suggestion to ignore hidden files preceded by a dot? hcs/folder_list outputs all the files matching a wildcard pattern. Seems like there should be some way to look for files that start with a dot and not pass them. I'm loading a directory of audio files but there are

Re: [PD] Quacktrip now launches with Pd

2021-04-19 Thread Samuel Burt
e-installing Pd. > > cheers > Miller > > On Mon, Apr 19, 2021 at 07:28:53PM -0400, Samuel Burt wrote: > > This is weird. I installed Quacktrip, today. Now, every time I start Pd > it > > automatically opens Quacktrip. There's nothing in my Startup preferences. > >

[PD] Quacktrip now launches with Pd

2021-04-19 Thread Samuel Burt
This is weird. I installed Quacktrip, today. Now, every time I start Pd it automatically opens Quacktrip. There's nothing in my Startup preferences. It suggested installing it to my Program Files/Pd/ folder so I let it. Was that a mistake? ___

Re: [PD] pd~ -nogui process with Gem [scopeXYZ]

2021-04-11 Thread Samuel Burt
u have it backwards -- you should run the audio in [pd~] as > it already has no GUI. And if you don't care about latency (it sounds > like you're using prerecorded or generated dmaterial), just increase > the audio block size until you don't get dropouts. > > Martin > > On Sun, Apr

[PD] pd~ -nogui process with Gem [scopeXYZ]

2021-04-11 Thread Samuel Burt
Here's what I'm trying to do: On a Raspberry Pi 3, *I want to run an audio patch that generates LFOs and also have a Gem window that shows [scopeXYZ].* There are tremendous dropouts unless [scopeXYZ] has a very short length of samples to process. Here's one problem I've run into: I'm prototyping

[PD] hid, hidio, hidin Windows 10 and game controllers

2019-11-20 Thread Samuel Burt
Has anyone compiled an hid object for 64-bit Windows, yet? There is an hcs download on deken, but only some of the objects work. Among the non-functional objects is a usbhid object. Does anyone have experience with that? Sam ___ Pd-list@lists.iem.at

[PD] Comma separators, as in pool.

2019-10-10 Thread Samuel Burt
place a single line, but there are > certainly workarounds... > > Christof > > *Gesendet:* Dienstag, 08. Oktober 2019 um 20:13 Uhr > *Von:* "Samuel Burt" > *An:* Pd-list > *Betreff:* [PD] Comma separators, as in pool. > > I'm updating code in Windows 10 64-

Re: [PD] Comma separators, as in pool.

2019-10-09 Thread Samuel Burt
place a single line, but there are > certainly workarounds... > > Christof > > *Gesendet:* Dienstag, 08. Oktober 2019 um 20:13 Uhr > *Von:* "Samuel Burt" > *An:* Pd-list > *Betreff:* [PD] Comma separators, as in pool. > > I'm updating code in Windows 10 64-

[PD] Comma separators, as in pool.

2019-10-08 Thread Samuel Burt
I'm updating code in Windows 10 64-bit and there are no 64-bit pool binaries. I'm in the process of writing my own pool objects using [list]s and [text]s, however I'm having a problem. Pool formatted data files use this format: , "index-name" , value , "index-name" , value , "index-name" , value

[PD] Using png files in Gem and Windows 10

2018-01-10 Thread Samuel Burt
Dear list, I'm trying to open png files with [pix_image] and [pix_multiimage] in Windows 10, but I get errors like [pix_image]: failed to load image 'C:/Users/compo/Documents/Pd/_Sketches/face/vowel1.png'. I saw someone with a similar problem two years ago on the list, and the only reply he/she

Re: [PD] Gem: can't load library -- FIXED. Download msvcr71.dll

2017-12-11 Thread Samuel Burt
Try downloading "msvcr71.dll" and put in the same dir as "gem.dll" > > Read https://lists.puredata.info/pipermail/pd-list/2016-08/115851.html > > > Mensaje telepatico asistido por maquinas. > > On 12/11/2017 7:06 PM, Samuel Burt wrote: > > Dear list,

[PD] Gem: can't load library

2017-12-11 Thread Samuel Burt
Dear list, I'm running Pd 0.48.0 on Windows 10 Pro (v1709, OS 16299.98), and I can't get Gem to load. I've spend most of the day on this. I've verified that zexy and cyclone load. I'm using deken to download Gem 0.93.3 to ~/AppData/Roaming/Pd/. I've also tried manual installing Gem. I've tried

Re: [PD] IAC Driver Latency (Samuel Burt)

2017-07-17 Thread Samuel Burt
) that might be my fault between creating the audio and MIDI files. So, I just put a little delay on the audio. Sam On Mon, Jul 17, 2017 at 9:52 AM Samuel Burt <composer.samuel.b...@gmail.com> wrote: > Update: > > It seems to happen when Gem ver: 0.93.3 is activated. DSP is not tur

Re: [PD] IAC Driver Latency (Samuel Burt)

2017-07-17 Thread Samuel Burt
Update: It seems to happen when Gem ver: 0.93.3 is activated. DSP is not turned on. Maybe, I'm just asking too much of my MacBook Pro from 2009? Sam > Message: 4 > Date: Mon, 17 Jul 2017 13:43:50 + > From: Samuel Burt <composer.samuel.b...@gmail.com> > To: "pd-l...@

[PD] IAC Driver Latency

2017-07-17 Thread Samuel Burt
Dear list, I'm experiencing a long delay between sending MIDI from Logic Pro X to Pd through the IAC driver. It's possibly 5 seconds or more. I see the playback head go past the notes and then I sit and wait to see the numbers appear in the same rhythm some time afterwards. Has anyone

Re: [PD] Bad arguments for message 'loadbang' to object 'pool'

2017-05-01 Thread Samuel Burt
; best, Thomas > > Am 26.04.2017 um 21:32 schrieb Samuel Burt <composer.samuel.b...@gmail.com > >: > > I feel like I've asked this question before, but couldn't find this exact > phrase in the mailing list. > > When I use pool in a patch, it throw this error when it loads: >

Re: [PD] nqpoly~ and dynamic object generation, loadbang issue?

2017-04-22 Thread Samuel Burt
ject: Re: [PD] nqpoly~ and dynamic object generation, loadbang > issue? > Message-ID: <15250962-0a9f-c1f3-6923-c7a5ee9cb...@iem.at> > Content-Type: text/plain; charset="utf-8" > > On 2017-04-19 21:40, Samuel Burt wrote: > > I did it! > > > &g

Re: [PD] nqpoly~ and dynamic object generation, loadbang issue?

2017-04-19 Thread Samuel Burt
.re...@gmx.at> wrote: > actually I never used the deken tool because I couldn't get it to work on > my Laptop. I always uploaded directly to puredata.info. > > > > Gesendet: Mittwoch, 19. April 2017 um 17:47 Uhr > Von: "Samuel Burt" <composer.samuel.b...@gmail.

Re: [PD] nqpoly~ and dynamic object generation, loadbang issue?

2017-04-19 Thread Samuel Burt
asily build > it from source (iemguts-v0.2.1-Sources-externals), just follow the > instructions in the readme. if you decide to do so it would be super > awesome if could upload your binaries to Deken :-). > > Christof > > > Gesendet: Mittwoch, 19. April 2017 um 00:4

Re: [PD] nqpoly~ and dynamic object generation, loadbang issue?

2017-04-18 Thread Samuel Burt
t; From: Claude Heiland-Allen <cla...@mathr.co.uk> > To: pd-list@lists.iem.at > Subject: Re: [PD] nqpoly~ and dynamic object generation, loadbang > issue? > Message-ID: <b07fc7f6-7d9d-99ce-a42c-c77222a3f...@mathr.co.uk> > Content-Type: text/plain; charset=utf-

[PD] nqpoly~ and dynamic object generation, loadbang issue?

2017-04-17 Thread Samuel Burt
Dear List, I'm zeroing in on a problem I'm having. If you've got some experience with this, please, help me out. I *dynamically create* copies of an abstraction in a patch that *contains [nqpoly~]*. The abstraction [nqpoly~] contains a *[loadbang]* that is supposed to trigger the creation of its

[PD] Gem issues with OSX and Windows 10. Was subject: gem install issues for Pd 0.47.1 Vanilla using Deken under OS X

2016-11-20 Thread Samuel Burt
I didn't see anyone reply to Jugen. I have a student who is having the same problem in Windows 10. Thursday he attempted to email the list, but I never spotted his email here. He was also installing Gem with deken and only gemhead was creating. With declare or Startup, the Pd window reports that

[PD] for libraries in d_fat format, use [declare] instead. was Re: Missing pd_darwin files with zexy in 0.47.1

2016-09-05 Thread Samuel Burt
become accustomed to the [library/object] format, I can understand the benefits of a single library file. Many thanks to Lucas and IOhannes. Sam > > > Message: 3 > Date: Sun, 4 Sep 2016 18:31:44 + > From: Lucas Cordiviola <lucard...@hotmail.com> > To: Samuel

[PD] Missing pd_darwin files with zexy in 0.47.1

2016-09-04 Thread Samuel Burt
List, I just installed Pd 0.47.1 in Mac OS 10.11.5. Using deken to download the latest zexy package, I found that all the pd_darwin files were missing! If you are missing your zexy objects, download the oldest version of zexy listed in deken. Thanks, Sam

[PD] How's Max MSP limited? was Re: How's Pd limited?

2016-02-24 Thread Samuel Burt
Alexandre, Since I haven't used Max in a very long time, maybe you can explain. What are the surprising limitations you've discovered with Max MSP? Sam > > -- > > Message: 2 > Date: Wed, 24 Feb 2016 23:19:53 -0300 > From: Alexandre Torres Porres >

Re: [PD] some notes for cyclone devs / maintainers

2016-02-24 Thread Samuel Burt
I just wanted to take a moment to thank the past, present, and future developers of cyclone (and all the other great libraries I use). I tried out MaxMSP back around 2000 and was lucky to find a collaborator who was working with Pure Data. I have never really tried to make compatible patches

Re: [PD] How's Pd limited?

2016-02-23 Thread Samuel Burt
sage onset to [tabread4~]'s right inlet or > face index degradation. > > On Tue, Feb 23, 2016 at 1:40 PM, Samuel Burt < > composer.samuel.b...@gmail.com> wrote: > >> David, >> >> One thing I attempted and couldn't find a solution for was the following, >

Re: [PD] How's Pd limited?

2016-02-23 Thread Samuel Burt
David, One thing I attempted and couldn't find a solution for was the following, mostly owing to the limitation of interfacing with a 64 sample block size. I wanted to have a directory of hundreds of audio recordings. Each one would be a single wavelength from an interesting sound, like a bass

[PD] Does Pd have a "sound"?

2016-02-14 Thread Samuel Burt
If anything Pd's sound would be related to its 64 sample block size that is mostly evident when people don't use sample rate line~ objects to smooth their signals. I'd say many other audio environments provide easy tools for dynamics management, reverberation, and EQ. This creates a particular

Re: [PD] configuring multiple readanysf~ objects for efficient playback

2016-02-13 Thread Samuel Burt
ting "rame...must be seeking" ("uplevel" body line 1) invoked from within "uplevel #0 $cmds_from_pd"(Tcl) INVALID COMMAND NAME: invalid command name "inet_high_1.wav" while executing "inet_high_1.wav" ("uplevel" body line 1)

Re: [PD] configuring multiple readanysf~ objects for efficient playback

2016-02-13 Thread Samuel Burt
ead4~] with that many at once. > > On Sun, Feb 14, 2016 at 1:22 AM, Samuel Burt < > composer.samuel.b...@gmail.com> wrote: > >> Sorry, I forgot to include some of the console errors. >> >> (Tcl) INVALID COMMAND NAME: invalid command name "e," >>

Re: [PD] fftease 3.0 compatibility with Linux. Was Re: fftease compatibility with Pd-0.46-7

2016-01-29 Thread Samuel Burt
.icat.vt.edu > l2ork.icat.vt.edu > ico.bukvic.net > On Jan 29, 2016 2:56 PM, "Samuel Burt" <composer.samuel.b...@gmail.com> > wrote: > >> Ivica, >> >> I'm trying it out now. I had previously tried installing pd-fftease 2.5.2 >> through deken. I g

Re: [PD] fftease 3.0 compatibility with Linux. Was Re: fftease compatibility with Pd-0.46-7

2016-01-27 Thread Samuel Burt
t; www.performingarts.vt.edu > disis.icat.vt.edu > l2ork.icat.vt.edu > ico.bukvic.net > On Jan 27, 2016 5:20 PM, "Samuel Burt" <composer.samuel.b...@gmail.com> > wrote: > >> Eric, >> >> I've been so excited by the results I got after fine tuning my patch with

[PD] fftease 3.0 compatibility with Linux. Was Re: fftease compatibility with Pd-0.46-7

2016-01-27 Thread Samuel Burt
, Jan 26, 2016 at 1:03 PM Samuel Burt <composer.samuel.b...@gmail.com> wrote: > It's working well, now. I think there were also some compatibility issues > with the way the objects used to work and the way they work now. I was also > getting crashes, but limited the warp factor in

Re: [PD] Pd-list Digest, Vol 130, Issue 88

2016-01-26 Thread Samuel Burt
I just wish I could figure out what is going wrong on my end. Sam > -- > > Message: 2 > Date: Mon, 25 Jan 2016 21:00:51 + > From: Samuel Burt <composer.samuel.b...@gmail.com> > To: "pd-list@lists.iem.at" <

Re: [PD] Pd-list Digest, Vol 130, Issue 88

2016-01-26 Thread Samuel Burt
rong about this. If I right-click to get help for a fftease object, though, it still can't find the help file. Thanks for the assistance. I hope this thread can help more people like me. Sam On Tue, Jan 26, 2016 at 11:16 AM Samuel Burt <composer.samuel.b...@gmail.com> wrote: > I messaged

Re: [PD] fftease compatibility with Pd-0.46-7

2016-01-26 Thread Samuel Burt
Bukvic > has also ported FFTease to pd-l2ork. > > -Eric > > > > On Tue, Jan 26, 2016 at 11:16 AM, Samuel Burt < > composer.samuel.b...@gmail.com> wrote: > >> I messaged Eric Lyon off-list, just in case he wasn't on list. That's >> when I also discovered h

[PD] fftease compatibility with Pd-0.46-7

2016-01-25 Thread Samuel Burt
Hi list, I'm attempting to use [pvoc~] and [mindwarp~] from fftease 2.5.2 in Pd vanilla 0.46-7. I have verified that [pvoc~] works in Pd-extended 0.43.4, but I just get a quick blast of digital distortion followed by silence when I run the same help file in vanilla. Was there some change to

[PD] Using an external from patch directory -- readanysf~

2016-01-23 Thread Samuel Burt
Readanysf~ comes with a bunch of dynamic libraries (on Mac) and every other version has its own set of things it needs. Does this mean it can't be incorporated into deken? >From what I understand, you can drop externals into a patch directory so its easy to transfer to someone else who might not

Re: [PD] Pd vanilla zverbose SSE, missing comments

2016-01-23 Thread Samuel Burt
IOhannes, Thanks for the help. [abs~], an object I use frequently, was causing the problem. Every time I used "Save" in Pd, it would trigger zverbose, six times. I found six instances of [abs~] and replaced them with [expr~ abs($v1)] which did the trick! I did not have any flags when loading Pd.

[PD] Pd vanilla zverbose SSE, missing comments

2016-01-22 Thread Samuel Burt
Pd list, Please, help me out here. I'm in the middle of migrating a massive project from Pd-extended to Pd-vanilla+deken. My Log is set to level 2, and I keep getting these messages: zverbose(2): checking for SSE compatibility zverbose(2): using SSE optimization zverbose(2): checking for SSE

Re: [PD] standalone

2015-12-14 Thread Samuel Burt
Couldn't you use GUI objects for your interface sending them all into a [pd~] object to run a copy of Pd with no gui in the background? The only thing they could break then would be connections between the GUI and [pd~] which could be nested away in a subpatch covered by a canvas. Unfortunately,

Re: [PD] [Bulk] band limited (anti-alias) techniques

2015-11-24 Thread Samuel Burt
I use a poor-man's crossfade between the complex waveform and a cosine as the frequency goes up. ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] deken (OS X)

2015-10-30 Thread Samuel Burt
On Fri, Oct 30, 2015 at 3:00 PM, Dan Wilcox wrote: > > I'm just getting around to trying out deken. I think this will be a > wonderful way to deal with libraries. I'm having some problems in OS X, > though. > > I used deken to import zexy and cyclone. The help files appear

[PD] deken (OS X)

2015-10-29 Thread Samuel Burt
I'm just getting around to trying out deken. I think this will be a wonderful way to deal with libraries. I'm having some problems in OS X, though. I used deken to import zexy and cyclone. The help files appear in the help browser, now, but none of the objects will load. I've tried [import zexy].

Re: [PD] Pd performance relationship to CPU model

2015-03-13 Thread Samuel Burt
I had watched the CPU numbers drop on portable Mac computers for some time with frustration. At first, my friends said the extra cores will give me more performance. Pd isn't multi-threaded! Then Intel started the auto-overclock trend. Does Pd cause a CPU to run at its maximum speed now? If I were

Re: [PD] [Bulk] Extending Vanilla (was Cyclone help patches issue list)

2014-12-18 Thread Samuel Burt
I'm with you, Alessio. As another user of Pd who has sometimes been paid in the past to make drop-and-go patches for others, if this community were to develop a repository-style way to load libraries into vanilla, I'd like to see it work like Java. 1. Opening a patch with [import cyclone] would

[PD] Moving subpatch abstraction canvas in parent patch with message

2014-09-17 Thread Samuel Burt
Greetings all, I'm designing a Pddroid party patch that has control components that move on and off screen. I'm using the touch.pd abstraction for an onscreen xy keyboard controller. I'd like to be able to move it offscreen dynamically to make space for a set of sequencer controls. All the

Re: [PD] Moving subpatch abstraction canvas in parent patch with message

2014-09-17 Thread Samuel Burt
that you are able to change the focus of which parts of the patch are rendered on screen (viewport) using a feature that Antoine added - see pure-widgets-demo in the droidparty-demos folder. Cheers, Chris. On 18/09/14 01:37, Samuel Burt wrote: Greetings all, I'm designing a Pddroid