Skip to content
/ Proteus Public

SuperCollider UGen which is modeled after the GuitarML Proteus VST

License

Notifications You must be signed in to change notification settings

spluta/Proteus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Samuel Pluta
Sep 27, 2024
8565638 · Sep 27, 2024

History

11 Commits
Sep 27, 2024
Jul 29, 2024
Jul 29, 2024
Sep 27, 2024
Jul 29, 2024
Jul 29, 2024
Jul 29, 2024
Sep 27, 2024
Sep 27, 2024
Aug 1, 2024
Jul 29, 2024
Jul 29, 2024

Repository files navigation

Proteus

Sam Pluta

This is a SuperCollider UGen implementation of the Proteus VST plugin by GuitarML, aka Keith Bloemer. The LSTM models are modefied from the Proteus source: https://github.com/GuitarML/Proteus and this implementation is largely modeled on his excellent project. Go download the VST!

This implementation should be able to load any of the Proteus models found in the Tone Library at https://guitarml.com/ and you can even train your own models: https://youtu.be/vwsSYpqRqyM?feature=shared

The project uses the RTNeural library by Jatin Chowdhury of ChowDSP and libsamplerate or Secret Rabbit Code by Erik de Castro Lopo.

Installation:

If you can, you probably want to use one of the pre-build binaries available on GitHub. On mac you will need to also need to clear the attributes so the OS doesn't think the file is trash:

xattr -cr <path to the plugin directory>

Building:

  1. Download this repository to its own directory.

  2. Download the RTNeural and libsamplerate submodules:

git submodule update --init --recursive
  1. Build libsamplerate in release mode (from the libsamplerate submodule directory): (setting BUILD_TESTING to FALSE disables testing that makes it look like it didn't build correctly when it did)
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=FALSE ..
make

for a mac universal build you have to build the library universal as well:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=FALSE '-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64' ..
make
  1. Build the Plugin (from the Proteus main directory):
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DSC_PATH=<PATH TO SC SOURCE> ..
cmake --build . --config Release

for a mac universal build:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DSC_PATH=<PATH TO SC SOURCE> '-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64' ..
cmake --build . --config Release

It should build Proteus plugin and leave the .scx file in the build directory

After building make sure this directory the scx, sc, and schelp files are in the SC path, recompile the SC libary, and they should work.

About

SuperCollider UGen which is modeled after the GuitarML Proteus VST

Resources

License

Stars

Watchers

Forks

Packages

No packages published