Learn RNBO and Max for Live

Getting Started

Welcome to RNBO

Quickstart

RNBO Basics

Key Differences

Why We Made RNBO

Fundamentals

Audio IO

Messages to rnbo~

Using Parameters

MIDI in RNBO

Messages and Ports

Polyphony and Voice Control

Audio Files in RNBO

Using Buffers

Using the FFT

Export Targets

Export Targets Overview

VST/AudioUnit
Max External Target
Raspberry Pi Target
The Web Export Target
The C++ Source Code Target

Code Export

Working with JavaScript
Working with C++

Special Topics

Sample Accurate Patching
Scala and Custom Tuning

RNBO and Max for Live

RNBO Raspberry Pi OSCQuery Runner

Raspberry Pi Debug Interface

Metadata

Export Description

Raspberry Pi GPIO

Updating the RNBO Package

RNBO and Max for Live

How RNBO and Max for Live work together. When it makes sense to port a patch to RNBO. Best practices with RNBO.

Sharing a Max for Live Device that uses RNBO

As of Live 11.3.1, the version of Max that comes bundled with Live fully supports RNBO. For users with the latest version of Live, it is no longer necessary to use a non-bundled version of Max. However, if you want to build a Max for Live device that uses RNBO, it's still best practice to export your RNBO patch to a Max external before sharing your Live device. That way, the rnbo~ object will not need to compile before the device can process audio.

Porting a Max for Live Device to RNBO

Suppose you have an existing Max for Live device, written before RNBO was released. Should you port it to RNBO? In many cases, the benefits will be small enough that porting to RNBO is unnecessary. However, there are situations where porting to RNBO will make a huge difference.

In plain Max, the Max environment itself has to manage the interaction between objects. One object sends a message to another, and Max is responsible for moving that message around and making sure it gets to the right part of the right object. That introduces overhead, consuming time and memory resources. With RNBO, the entire RNBO patch is compiled into a single block of code. A RNBO patch will almost always be more efficient, in terms of CPU usage, than an equivalent Max patch.

However, if you're using a Max for Live device with a rnbo~ object inside it, be aware that the internal RNBO patcher must be generated and compiled before the rnbo~ object can process audio. A Max for Live device containing a rnbo~ object will probably load slower than an equivalent Max patcher. For the best possible performance, export your rnbo~ object to a Max external, and use that in your Max for Live device.

If you're building a Max for Live MIDI instrument with multiple polyphonic voices, you're especially encouraged to port your audio processing to a RNBO patch, and then to export to a Max external. A single Max external will always load much faster than a large poly~ object, and after porting you should see significant improvements in the time it takes for your Max for Live device to load.

Finally, if controlling access to your intellectual property is important to you, you should consider exporting to a Max external. Unlike a Max subpatcher, there's no way to double-click on a Max external to open and reveal its contents. Even if your end user unfreezes your device and looks at the patch, they won't be able to look inside your exported Max external. You can keep your secret sauce a secret.

Best Practices

If you're building a RNBO device for use in Max for Live, you might wonder how best to set up your project. We recommend using a Max Project to organize your work, as well as creating two different main patches. One patch will be your Max for Live device, which will ultimately be hosted inside of Live, and the other will hold your rnbo~ object.

Screen Shot 2022-11-05 at 12.18.56 PM.png

The basic workflow looks something like this: design your audio effect in your rnbo~ patch. Then, export a Max external that you can use in your Max for Live patch. With this workflow, you can easily make changes to any part of your patch, and when you're ready to distribute a finished Max for Live device, you won't have to reorganize your overall structure.

See the attached project for an example of how best to organize a Max for Live Device with RNBO. Please note that you will need the RNBO Synth Building Blocks package, available on the Package Manager, to open this project.

Materials in this article