Thanks!
Re: the "à": I cheated - copy and paste... hahah
The soundtouch~.pd_linux file you compiled works great here on my Pi, thanks!
Just out of interest, ofter modifying the Makefile to be correct for the ARM, what were the other steps required to compile it? I can't figure out what to do with a Makefile...
Cheers! and +à :)
> Message: 2
> Date: Wed, 20 May 2015 23:03:58 -0400
> From: puredata(a)11h11.com
> To: pd-list(a)lists.iem.at
> Subject: Re: [PD] soundtouch~ for …
[View More]ARM (Raspberry Pi / RPi)
> Message-ID:
> <20150520230358.Horde.k0FQZnmx7yRVXUsen0AmIbA(a)courrier.privatedns.com>
> Content-Type: text/plain; charset=utf-8; format=flowed; DelSp=Yes
>
> Hi Haima,
>
> +1 for finding the "à" on your keyboard (or did you "cheat"), but it's
> not my name or nick :) à+ means see "you later" in french. anyway
> here's the download link again:
> https://dl.dropboxusercontent.com/u/1455235/stuff/soundtouchrpi.zip
>
> Cheers~
>
>
>
[View Less]
As far as I know Pd stopped using the mayer fft library in .46, which is probably why this is new behavior. I only get what you’re experiencing with a block size of 8. Otherwise, it seems to perform as expected.
To really understand if this is a bug or not is to know which fft library is being used for OS X. My guess is it’s the OOURA but it’s not clear from looking at [fft~] object code that comes with distribution.
You could also download the old library and recompile Pd, but I …
[View More]doubt it’s worth it.
-Rob
-------
Hi list,
There's either a major bug in the [fft~] objects in Pd-0.46.7 (64bit OSX)
or I'm going crazy. I'd love to see if others can reproduce it.
Basically, for [block~] sizes less than 32 bits, [fft~] doesn't perform --
it just passes the signal through unchanged. [ifft~] does the same. The
[rfft~]-[rifft~] is a little more complicated -- it passes signal through
but zeroes out the last N/2 for [block~] sizes less than 64.
See the attached patch, which only shows [fft~]. The saved contents of the
tables on opening are the results for [block~ 8] on my machine, for
quarter-nyquist at 44100.
I've never seen this before in other versions of Pd. Anyone else get this
behavior?
Matt
[View Less]
I think a core commenting sprint would be *very* helpful, specially to those of us (me) who would like help in understanding the black magic inside.
--------
Dan Wilcox
@danomatika <https://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>
> On Oct 19, 2016, at 12:57 PM, pd-list-request(a)lists.iem.at wrote:
>
> That is an important question. Pd code is full of clever tricks and
> bit hacks for dsp …
[View More]efficiency. What is the origin of q8_rsqrt(), why
> and how does it work? What about PD_BIGORSMALL() in m_pd.h? And the
> mysterious UNITBIT32 number in d_osc.c? Ideally such code should be
> commented not only to denote its function (if necessary) but also to
> reference the origin so you may be able to find info.
[View Less]
Hi,
I'm working on a granular sampler borrowing parts of the patch on pd-tutorial (http://www.pd-tutorial.com/english/ch03s07.html).
Everything works smoothly except for one little annoying problem. If I fire the sample before the last one is through, sometimes I get a click at the beggining of the playback.
This is happening on a percussive sound (rapid envelope attack) so I'm guessing it's got something to do with [tabread4~] failing to interpolate between whatever the last amplitude value …
[View More]was and the first wavetable value.
This http://crca.ucsd.edu/~msp/techniques/latest/book-html/node63.html can probably be used to solve my problem, but I can't figure out how (or where in the patch) I should implement it.
Any clues would be greatly appreciated.
Thanks a lot, and have a good one.
ps. I tried to comment the patch to make it understandable. It is still, however a work in progress. Let me know of any questions.
--
Federico Galland <federicogalland(a)gmail.com>
[View Less]
Roman wrote:
> Just in case nobody more knowledgeable chimes in. Pd found the
> approrpiate file: Gem.dll, but it still didn't load it. This probably
> means that Gem.dll is dynamically linked to other libraries that can't
> be found. You might get a hint when opening Gem.dll in a tool like
> DependencyWalker or similar. It hopefully shows you which other dll is
> missing or not found.
thanks Roman.
running DependencyWalker gives a lot of yellow warnings and a red one in
…
[View More]the dep.tree.
and in the log window:
Error: At least one required implicit or forwarded dependency was not
found.
Error: At least one module has an unresolved import due to a missing
export function in an implicitly dependent module.
Warning: At least one delay-load dependency module was not found.
Warning: At least one module has an unresolved import due to a missing
export function in a delay-load dependent module.
attached are 2 png's which show 2 items i think could be causing the
problem:
-msvcrt.dll which appears to generate one or both of the above mentioned
errors.
-msvcr71.dll; in pd/bin exists msvcr90.dll.
any hints how to proceed?
rolf
[View Less]
When the app needs a different version of the built in windows libs, that usually means it was build on a different version of Windows.
Sometimes, you have to include a copy of the lib itself with the app and/or the user needs to install it. Hacky I know, but that’s what I’ve done in the past…
IE: https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/7f5a39ee-e089… <https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/7f5a39ee-e089…>
Often times, I’ve quickly had to go …
[View More]to one of these sites that hosts various Windows api dlls just to get something to work. Either that or copy it from another machine with an older OS. Seems like this might be an option for now.
--------
Dan Wilcox
@danomatika <https://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>
> On Jun 2, 2016, at 2:09 PM, pd-list-request(a)lists.iem.at wrote:
>
> From: rolfm(a)dds.nl <mailto:rolfm@dds.nl>
> Subject: Re: [PD] Deken : Install externals with a list (Py Fave)
> Date: June 2, 2016 at 2:09:31 PM MDT
> To: pd-list(a)lists.iem.at <mailto:pd-list@lists.iem.at>
>
>
> Roman wrote:
>
>> Just in case nobody more knowledgeable chimes in. Pd found the
>> approrpiate file: Gem.dll, but it still didn't load it. This probably
>> means that Gem.dll is dynamically linked to other libraries that can't
>> be found. You might get a hint when opening Gem.dll in a tool like
>> DependencyWalker or similar. It hopefully shows you which other dll is
>> missing or not found.
>
> thanks Roman.
> running DependencyWalker gives a lot of yellow warnings and a red one in the dep.tree.
>
> and in the log window:
>
> Error: At least one required implicit or forwarded dependency was not found.
> Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module.
> Warning: At least one delay-load dependency module was not found.
> Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.
>
> attached are 2 png's which show 2 items i think could be causing the problem:
> -msvcrt.dll which appears to generate one or both of the above mentioned errors.
> -msvcr71.dll; in pd/bin exists msvcr90.dll.
>
> any hints how to proceed?
[View Less]
If you’re tyring to build from the current git master, you’ll be out of luck.
Try my autotools_updates branch:
git clone https://github.com/pure-data/pure-data.git -b autotools_updates
cd pure-data
./configure
make
make app
--------
Dan Wilcox
@danomatika <https://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>
> On May 17, 2016, at 10:43 PM, pd-list-request(a)lists.iem.at wrote:
>
> From: Alexandre Torres …
[View More]Porres <porres(a)gmail.com <mailto:porres@gmail.com>>
> Subject: Re: [PD] help compiling vanilla on mac
> Date: May 17, 2016 at 9:43:42 PM MDT
> To: pd-lista puredata <pd-list(a)iem.at <mailto:pd-list@iem.at>>
>
>
> so, i installed homebrew, autoconf and aclocal, was able to run ./autogen.sh now, trying ./configure, I get
>
> ./configure: line 16002: syntax error near unexpected token `JACK,'
>
> ./configure: line 16002: ` PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)'
>
> configure: error: ./configure failed for portaudio
>
>
> I get the same if i try: ./configure --enable-jack
>
>
> so, is this an error in the source?
>
> cheers
[View Less]
hi, list !
i recently ran into a bug when i used the "coll" object from the BETA
cyclone library.
simply put: when i create a coll object and quit PD, it throws a
Microsoft Visual C++ Runtime Error (see image).
example patch is attached.
the object seems to work though, as long as PD is running. only the 3rd
outlet (bang when file read) doesn't work.
i downloaded the cyclone 0.2 beta package with deken.
the older pd-extended version (also from deken) works fine.
PD 0.47-2, Windows 7 …
[View More]64 bit
did anybody experience this as well ?
best
oliver
--
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
/////////////// http://pendler.klingt.org //////////////
\\\\\\\\\\\\\\\ http://oliver.klingt.org \\\\\\\\\\\\\\
////////////////////////////////////////////////////////
\\\\\\\\ LIVE-BUILDER (music improvisation tool): \\\\\\
////////////// http://tinyurl.com/qaohv35 //////////////
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
[View Less]