The sounds you hear in Sonic Pi are all produced by the SuperCollider
synthesis engine. These synths and effects have to be defined beforehand
in a special kind of binary file called a synthdef
. The built in
synthdefs are loaded up on boot so they are ready to trigger.
Synthdefs are ultimately compiled from source code into binary files, but there are two main ways you can do this. You can either use the Clojure based library called Overtone, or directly use SuperCollider's own language instead.
You can find the source code for the synthdefs that currently ship with Sonic Pi in the folder
etc/synthdefs/designs/
Most of these were originally designed in Overtone. Please note however, that for new synth designs that are intended to be distributed with Sonic Pi,the preference is that they are created with SuperCollider, as it is much easier to set up, create and maintain synths this way. As such, the instructions for using Overtone still work, but if you are considering submitting a new synth design for distribution with Sonic Pi, we strongly recommend that you create your synth with SuperCollider directly.
(Note also that detailed information on Overtone and SuperCollider syntax is beyond the scope of this document. However, the information contained below should be a reasonable guide to getting set up and running, as well as giving a brief outline of both the source code and process required to create and use your own synths).
Synth design constraints
Using Overtone to design and compile your synths
Using SuperCollider to design and compile your synths
If you want your synth to work with Sonic Pi's automatic stereo
sound infrastructure you need to ensure your synth outputs a stereo
signal to an audio bus with an index specified by a synth arg named
out_bus
.
Additionally, your synth must self-terminate at some point - Sonic Pi will not tidy up zombied synths.
You'll need the following to be able to compile the synths yourself:
- The latest version of Overtone (
git clone git@github.com:overtone/overtone.git
) - Leiningen
- A text editor setup to work with Clojure
After cloning the Overtone repo, cd into the folder and edit the project.clj
file to add
the Sonic Pi synthdefs folder to the locations it looks in when requiring Clojure files.
:native-path "native"
:min-lein-version "2.0.0"
;; this is the line to add
:source-paths ["src" "/Users/foo/sonic-pi/etc/synthdefs/designs"]
;; make sure the path points to your installation of Sonic Pi
cd
into the Overtone folder and run
$ lein repl
Make a note of the port number that nREPL starts on:
nREPL server started on port 49223 ...
If you're using vim
and vim-fireplace
:
- open a new terminal window
cd
back into the Sonic Pi folder- Open
etc/synthdefs/designs/overtone/sonic-pi/src/sonic_pi/core.clj
- type
:Connect
then hit enter - when prompted, enter the nREPL port number from earlier
- Visual select the namespace definition and type
:
followed byEval
then enter
This should start booting Overtone which will take a little while. If there are no errors, your vim is successfully hooked up to Overtone!
If you're using emacs
:
- open a new terminal window
- open
emacs
and go to theproject.clj
for Overtone M-x cider-jack-in
to connect to the running nREPL- Navigate back into the Sonic Pi folder and open
etc/synthdefs/designs/overtone/sonic-pi/src/sonic_pi/core.clj
- Evaluate the namespace as you normally would for Clojure in emacs
Taking the example of a basic synth, let's have a look at what the bits are doing:
(ns sonic-pi.synths.studio
(:use [overtone.live])
(:require [sonic-pi.synths.core :as core]))
(do
(without-namespace-in-synthdef
(defsynth sonic-pi-recorder
[out-buf 0 in_bus 0]
(disk-out out-buf (in in_bus 2))))
(uncomment
(core/save-synthdef sonic-pi-recorder)))
This is the definition used to define the record functionality in Sonic Pi.
The without-namespace-in-synthdef
from sonic-pi.synths.core
needs to
wrap the defsynth
for the synth to follow the correct naming
convention.
The core/save-synthdef
manages the workflow for saving the compiled
synthdef file into the correct folder and also the graphviz design which
is used for documentation.
By evaluating the whole form this should cause all the files to be saved to the correct places.
You will need to have Supercollider
installed on your computer. Simply define your synth with SuperCollider's built
in language, and use the writeDefFile()
command to store the compiled synthdef
into a directory of your choice. You can then dynamically load your synthdefs
with the load_synthdefs
fn.
Below is a small example of a synth design:
SynthDef(\\piTest,
{|freq = 200, amp = 1, out_bus = 0 |
Out.ar(out_bus,
SinOsc.ar([freq,freq],0,0.5)* Line.kr(1, 0, 5, amp, doneAction: 2))}
).writeDefFile(\"/Users/sam/Desktop/my-synths\");
This is a simple synth that causes two Sine wave oscillators to sound on two separate channels for a short time.
Let's examine it at a high level:
SynthDef
is the SuperCollider function that creates a Synth Definition.
Here, we pass SynthDef
two parameters: \\piTest
, (the name we want to give
to the synth, preceded by \\
), and a function enclosed in curly brackets
{...}
, that describes the components of the synth that will generate the
sound. (This needs to adhere to the Sonic Pi synth design
constraints as mentioned above).
Next, writeDefFile()
is used by SuperCollider to create the compiled binary
file from the source definition, and we pass it the location of a folder where
the compiled file is then stored.
To actually trigger the creation of the compiled file, once we have entered the
above synthdef source code into a new file in SuperCollider, we can select the
menu item Language
> Evaluate File
. The 'Post Window' (SuperCollider's log
window) will show -> a SynthDef
, indicating that the code was successfully
executed and the result was a new synthdef file, as desired. The new file will
be waiting in the location we set with writeDefFile()
.
There are two choices for making your synth available in Sonic Pi.
Integrating a synth into Sonic Pi 'loosely' will allow you to use it but will not make features such as autocompletion of synth opts available.
To enable a synth in this manner, firstly, make sure that the setting 'Enable external synths and FX' is turned on in the Preferences pane under Audio > Synths and FX.
Next, in your Sonic Pi code, call load_synthdefs
with the path to the folder
containing the synthdefs you've compiled and they'll be immediately available
to Sonic Pi via the synth
fn.
Lastly, for synths like these that are not tightly integrated into Sonic Pi,
You call them by name with a string value - eg: synth 'piTest'
.
Integrating your synth into Sonic Pi in a tighter manner will allow you to use it without having to enable external synths and FX or explicitly load the synth path into memory beforehand. It will also enable features such as synth opt autocompletion.
However, there's a little more involved when doing it this way. You need to add
the appropriate metadata to app/server/ruby/lib/sonicpi/synths/synthinfo.rb
and re-compile the app.
Lastly, as with built-in synths, you would call the synth by name with a symbol.
Eg: synth :piTest
.
We look forward to hearing about your synth and FX creations - have fun!