Extra "ports" of juce-based plugins using the distrho build system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falkTX b6f25f1feb Fix build against latest juce 7 years ago
..
LV2-fx Add protoplug 10 years ago
LV2-gen Add protoplug 10 years ago
ProtoplugFiles Update ProtoplugFiles 7 years ago
Source Fix build against latest juce 7 years ago
VST-fx Add protoplug 10 years ago
VST-gen Add protoplug 10 years ago
license.txt Add protoplug 10 years ago
readme.md Add protoplug 10 years ago

readme.md

protoplug

Create audio plugins on-the-fly with LuaJIT.

Protoplug is a VST/AU plugin that lets you load and edit Lua scripts as audio effects and instruments. The scripts can process audio and MIDI, display their own interface, and use external libraries. Transform any music software into a live coding environment!

Cross-platform : builds for Windows, Mac OS X and Linux. This means that all protoplug scripts are compatible with these platforms and can be loaded into a huge amount of audio software (glory to JUCE)

Fast : Use the speed of [LuaJIT] 1, and perform DSP tasks as efficiently as old school C implementations.

Free and open source : Want a new feature? Add it yourself. The source is MIT-licensed.

Compiling from Source

The source is C++ and only requires system headers. Project files and Makefiles are found in the Builds folder. (These are generated by the [Introjucer] 3, which can generate Makefiles, Visual Studio, Code::Blocks, and XCode projects.)

After compiling, you'll also need the [LuaJIT] 1 shared library installed on your system or in the ProtoplugFiles/lib folder. The same goes for [FFTW] 4 if you want to load scripts that use that library.

Linux :

tar zxf protoplug-1.3.0.tar.gz
cd protoplug-1.3.0/Builds/multi/Linux
make

You might get some missing includes. The required headers should be easy to obtain, for example on Debian 7 :

sudo apt-get install libfreetype6-dev libx11-dev \
 libasound2-dev libxinerama-dev libxcursor-dev