-
alexandros
A guy on Pd's facebook group mentioned he can't create a profile on this forum as the anti-spam continuously blocks him. I just thought that the admins should know. @whale-av
-
alexandros
The Bela runs on 44100 only, so your audio files should play fine, unless you've already tried this on a Bela.
-
alexandros
Are there any build instructions for the Pd external? In the GitHub link I can only see instructions on how to build the OF addon.
-
alexandros
A bit of shameless self-plug: I built such a looper for chapter 9 of my book "Digital Electronics for Musicians", where overdubbing both forward and backward is possible, without getting distortion. In the 2nd edition of the book, the project is built with a Bela, as a stomp box. here's the chapter's webpage, in case you are interested https://link.springer.com/chapter/10.1007/979-8-8688-0394-9_9 and here's the source code of the first edition https://github.com/Apress/digital-electronics-for-musicians
-
alexandros
Aparently, there are no binaries for the architecture of Pi 5, which is different than Pi 3 (and I think 4 too). You can try and get the sources and build it yourself. In deken, go to Edit -> Preferences, and untick "Hide foreign architectures", to get all the results when you search for a package. One of the else packages should contain the sources and instructions on how to build it.
Edit: I couldn't find the sources in deken, so you could try GitHub here https://github.com/porres/pd-else
-
alexandros
I don't know at what state Purr-Data is (maintained, developed, abandoned), but you can give PlugData a try instead. It is actively developed, and should probably include what you need. Although, Pd-vanilla should also cover your needs, as almost all externals from the Pd-extended era are present in its repositories, installable through Help->Find externals.
-
alexandros
Usually it's very fast, no need to remove prior commits from Pd's repositories. You're sure you supplied a different version number when uploading with deken?
-
alexandros
Try the mailing list. All the devs are there, including the LibPd devs/maintainers.
-
alexandros
What is this /mrpeach/net prefix? AFAIK, [udpsend] is part of the mrpeach library, so [mrpeach/udpsend] should work. Did you try it?
-
alexandros
Perhaps you don't even need [symbol]. You can give the patch a try without it, it might work.
-
-
alexandros
You might want to give [serial_print] abstraction a try, I made it especially for communicating with Arduino's Serial.print() function. Your Arduino code seems alright for this case. You can find the abstraction here.
Connect [comport] to [serial_print], and both outlets of [serial_print] to [s ] ([send]) without arguments, like this:[comport 1 9600] | [serial_print] | / | / | / | / [send]
Then use [r ] ([recieve]) objects with the same argument as the string you use in your Arduino code, for example [r p], [r s1], [r f1], [r f2] for your first Arduino sketch, and [r a1] etc. [r dist] for your second sketch.
-
alexandros
@KMETE OK, you have pd-cyclone-master in your search paths, but you're trying to load [cyclone/scope~]. What happens if you just try to load [scope~] (no "cyclone" prefix)?
-
alexandros
your search path is called pd-cyclone-master, whereas you're trying to load an object from a path called cyclone. Either change the name of the pd-cyclone-master directory to cyclone, or the path in the object name to pd-cyclone-master.
-
alexandros
The second edition of "Digital Electronics for Musicians" is out! This book is on Pd combined with the Arduino and occasionally with the Raspberry Pi for the creation of interactive musical projects. This second edition focuses on updated software, introduces the Bela, and adds a chapter on AI with the [neuralnet] object.
It includes an introduction to Pd, an introduction to the Arduino, Linux command line for remotly controlling the Pi, wireless communication between the Arduino and the computer with the XBee modules and WiFi, and examples on embedding computers to create stand alone projects.Check the book here.
As a side-note, the publisher is looking for readers to write a review on Amazon. If you're interested, DM me your email and I will forward it to the publisher. You'll get a free PDF version of the book so you can read it and then write a review. This is on a first-come first-serve basis, for a limited number of people.
Admins, sorry for this shameless slef-plug, if you think it doesn't fit this forum, please remove.
-
alexandros
[neuralnet] update! Version 0.3 has just been released!
- New activation functions added
- Access to the internal structure of a trained network (e.g. the latent space)
- Storing weights and biases during training for visualization
- Save models during training
- Signal-rate version of the object!
- Audio autoencoder example added!
Binaries for Linux, Raspberry Pi 3,4,5, macOS, and Windows (thanks @ben.wes for macOS and Windows) are available through deken.
Souces are available on GitHub https://github.com/alexdrymonitis/neuralnet
Thanks to Ben Wesch (@ben.wes), Dan Wilcox, IOhannes m zmoelnig, Christof Ressi, and others!Enjoy!
-
alexandros
If [scale] maps a range of values to another range, then this is possible with vanilla objects too. Check the [map] vanilla abstraction from https://github.com/alexdrymonitis/miscellaneous_abstractions that does this.
-
alexandros
@yannseznec you have posted the same question on Pd's mailing list. I guess you did both the list and forum simultaneously. I know that not everybody is both on the list and the forum, so I guess you were trying to reach more people this way. This though adds to the noise that already exists in these archives. I did reply to the list, so I'm not going to reply here. Please, in the future, prefer one of the two archives and only if you get no working reply in some time, move to another archive.
-
alexandros
Check the aoo library (audio over OSC), it's more up to date.
-
alexandros
I don't know how to do that, but if you want to use FFMPEG, there's an external for it, check here https://forum.pdpatchrepo.info/topic/12980/ffplay-an-implementation-of-ffmpeg-for-audio-playback-of-almost-any-media-format