All Projects → juandagilc → DAO-MaxMSP-Pd

juandagilc / DAO-MaxMSP-Pd

Licence: other
Collection of Max/MSP and Pd externals developed from the explanations in the book "Designing Audio Objects for Max/MSP and Pd" by Eric Lyon.

Programming Languages

c
50402 projects - #5 most used programming language
Max
122 projects
Makefile
30231 projects
ruby
36898 projects - #4 most used programming language
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to DAO-MaxMSP-Pd

MEC
Micro Expression Control
Stars: ✭ 46 (+31.43%)
Mutual labels:  beaglebone-black, maxmsp, bela
Acapela
Acapela is... a-cape-for-Bela, and a box.
Stars: ✭ 15 (-57.14%)
Mutual labels:  beaglebone-black, bela
arduivis
a bi-directional communication paradigm for programming languages & microcontrollers
Stars: ✭ 48 (+37.14%)
Mutual labels:  puredata, maxmsp
PdWebParty
An app that allows Pd users to run patches in a web browser and share them with a web link
Stars: ✭ 37 (+5.71%)
Mutual labels:  puredata, pd-externals
pd-autotuned
an autotuner for Puredata ported from the autotalented LADSPA plugin
Stars: ✭ 16 (-54.29%)
Mutual labels:  puredata
Cyclops-PRU
Programming framework for the Beaglebone black's Programmable Realtime Unit (PRU)
Stars: ✭ 33 (-5.71%)
Mutual labels:  beaglebone-black
Bose-Frames-Web-SDK
A JavaScript version of the Bose Frames SDK
Stars: ✭ 74 (+111.43%)
Mutual labels:  maxmsp
epoll
A low-level Node.js binding for the Linux epoll API
Stars: ✭ 79 (+125.71%)
Mutual labels:  beaglebone-black
pdjs
JavaScript External for Pure Data based on V8
Stars: ✭ 45 (+28.57%)
Mutual labels:  puredata
upp
Universal Polyphonic Player (UPP) for Pure Data
Stars: ✭ 14 (-60%)
Mutual labels:  puredata
tidal-maxmsp
Connecting the Tidal live coding environment to MaxMSP
Stars: ✭ 34 (-2.86%)
Mutual labels:  maxmsp
Cardinal-EMS
Aircraft engine management system using Qt.
Stars: ✭ 20 (-42.86%)
Mutual labels:  beaglebone-black
py-js
Python3 externals for Max / MSP
Stars: ✭ 30 (-14.29%)
Mutual labels:  maxmsp
AudioLab
Pure Data abstractions for electroacoustic composition & live electronics
Stars: ✭ 59 (+68.57%)
Mutual labels:  puredata
BelaUtils
Tools reimplemented using Bela library
Stars: ✭ 24 (-31.43%)
Mutual labels:  bela
HoaLibrary-Max
🔉 HoaLibrary for Max
Stars: ✭ 70 (+100%)
Mutual labels:  maxmsp
ableton-midi-sculptor
Ableton MIDI Sculptor: Tools for MIDI editing in Ableton Live
Stars: ✭ 56 (+60%)
Mutual labels:  maxmsp
pd-aubio
aubio external for PureData
Stars: ✭ 20 (-42.86%)
Mutual labels:  puredata
gobot
Golang framework for robotics, drones, and the Internet of Things (IoT)
Stars: ✭ 7,869 (+22382.86%)
Mutual labels:  beaglebone-black
DepthKit-for-Max
A patch for using DepthKit volumetric videos in Max/MSP/Jitter
Stars: ✭ 21 (-40%)
Mutual labels:  maxmsp

Summary

This repository is a collection of Max/MSP and Pd externals developed from the explanations in the book "Designing Audio Objects for Max/MSP and Pd" by Eric Lyon.

The externals developed are:

  • bed is a max-only1 external that provides non-real-time buffer/array operations.
  • cleaner~ has basic controls to do adaptive noise reduction in the frequency domain.
  • dynstoch~ implements dynamic stochastic synthesis as formulated by Iannis Xenakis.
  • mirror~ simply copies audio from the input directly to the output without any modifications.
  • moogvcf~ is a port of the Csound unit generator generator "moogvcf".
  • multy~ multiplies the two input signals and sends the result to the output.
  • multy64~ is the same as multy~ but implements the 64-bit version of the dsp and perform routines of the Max/MSP external.
  • oscil~ is a wavetable oscilator that allows specification of waveform by additive synthesis and by name of common band-limited waveforms.
  • oscil_attributes~ is the same as oscil~ but implements attributes for the Max/MSP version of the external.
  • retroseq~ is a sample-accurate sequencer that sends a signal representing frequency values.
  • scrubber~ is an implementation of the phase vocoder algorithm.
  • vdelay~ provides variable delay with feedback and allows delays shorter than the signal vector size.
  • vpdelay~ is the same as vdelay~ but implemented using pointers instead of array indexes.

Additional utility externals were written to provide functionality available as built-in Max/MSP externals that do not exist "natively" in Pd:

  • cartopol~ converts real and imaginary parts to magnitude and phase.
  • poltocar~ converts magnitude and phase to real and imaginary parts.
  • windowvec~ multiplies the incoming signal with a Hann window (raised cosine wave).

Clone

You can run the following commands in the terminal to clone this repository and to checkout the version of the Max and Pd SDKs that were used to build all the projects:

git clone https://github.com/juandagilc/DAO-MaxMSP-Pd.git
cd DAO-MaxMSP-Pd/
git submodule update --init

Build

The table below shows details about the tools that have been used to build and test the externals of this repository. For more information about the steps followed to setup the Xcode projects, Visual Studio projects, and Makefiles, see the SETUP.md file.

Operating Systems Built with Tested on
macOS Sierra 10.12.6 Xcode 9.1 Max 7.3.4 (32/64-bit2) & Pd-0.48-0 (32-bit)
Windows 10 Visual Studio Community 2015 Max 7.3.4 (32/64-bit2) & Pd-0.48-0 (32-bit)
Linux (Ubuntu MATE 16.04 LTS 32-bit) GNU Make 4.13 Pd-0.48-0 (32-bit)
Linux (Debian GNU/Linux 7.4 (wheezy) on the BeagleBone Black + Bela) GNU Make 3.813 libpd 0.8.3 (armv7l) BeagleBone Black + Bela Cape

To build all the externals in this repository at once you can run ruby build.rb from the Terminal on macOS or Linux, or from the Developer Command Prompt for VS2015 on Windows (on macOS Ruby comes preinstalled, on Linux you can install it using sudo apt-get install ruby-full, and on Windows you can install it from https://rubyinstaller.org). The build.rb script creates a folder called _EXTERNALS_ in the root of the repository with subfolders for Max/MSP and Pd files. The optional argument BBB can be passed to the script to cross-compile the externals for the BeagleBone Black + Bela Cape from a host operating system (cross-compilation was tested only on macOS using the Linaro toolchain). Max/MSP and Pd patches showing the usage of the externals will be copied to the _EXTERNALS_ folder as well.

License

Please see the LICENSE.md file for details.


1 "Max-only" means that the external does not process audio in real-time, but it is implemented for Max/MSP and Pd.
2 However, the only external that implements 64-bit dsp and perform routines is multy64~.
3 The Makefiles can be used to build Pd externals for macOS, Windows, and Linux, using make.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].