This post was first posted on the Twilio Blog on May 17, 2018
Sonic Pi is an Integrated Development Environment (IDE) for writing music in Ruby. I write code with Ruby using the Sonic Pi IDE and sample myself screaming over it with Audacity under the artist name Messica Arson. The sound I create is very much inspired by the strange sounds of noise music combined with my screams I perfected while fronting a punk band.
In this tutorial we’ll walk through how to create this song together.
What is Sonic Pi?
With Sonic Pi we can interact with our computer as if we were using a synthesizer. Under the hood Sonic Pi is a Ruby wrapper for SuperCollider. There are samples and synthesizers loaded in that you can interact with in countless ways. You can also add your own samples as we will be doing in this tutorial.
Download Sonic Pi before moving on with the rest of the post. If you have an older version of Sonic Pi be sure to update to the most recent version (version 3.1). To update, go to the help
menu and then click where it says updates
and click check now
to see if there any recent updates.
Loops are the core of Sonic Pi
Since electronic music is built off repetitive loops, understanding how loops are created is a critical concept to using Sonic Pi effectively. Live loops allow you to make changes on the fly.
The basic syntax of a loop in Sonic Pi is as follows:
live_loop :name_your_loop do
synth :name_of_synth
sleep 0.25
end
The first step to creating a loop is to name your loop. From there you can call in the synth or the sample you are working with. The sleep allows you to adjust the timing of your loop. For sleep, lower numbers make the sound faster and higher numbers make the sound slower. It’s important to note, if you don’t include the sleep the loop won’t work.
Let’s get started writing a song together
Now that we know the basic syntax of loops in Sonic Pi, we can write our first loop in Buffer 0
of the IDE. In Sonic Pi a buffer is where you write code. You can write code in one buffer and move to another buffer to write more code while you are creating a song without stopping. Some developers choose to write code in multiple buffers to keep things organized. There are 10 buffers that start count at 0. Today we will be writing code all in one buffer.
Let’s create a loop named start that uses the tri
synth in Buffer 0
which is the first buffer in the IDE:
live_loop :start do
synth :tri
sleep 0.25
end
To run the loop press the Run
button or alt/cmd R
. To stop the sounds press alt/cmd S
or the stop button. The tri synth creates a nice pleasant melody that sounds like this. A full list of keyboard shortcuts for Sonic Pi can be found here.
Adding a sample to our song
We can now add in a sample to our loop named start
. Let’s use one of my favorite built-in samples called loop_safari
. Edit your loop to look like this:
live_loop :start do
synth :tri
sample :loop_safari
sleep 0.25
end
The sound now should have more percussive elements to it and sound like this
.
Adding a second loop with bass
So far, we’ve been working in one loop but if we added a different loop we can adjust the timing. The timing denoted by the sleep of the loop so that it plays at a slower or faster pace. To create a more complete sound for our song, we’re going to have our bass be slower than our first loop.
Right below your start
loop let’s add a second loop:
live_loop :second do
sample :bass_thick_c
sleep 0.5
end
As you can hear, the bass makes the sound we are creating seem more full.
Adding effects
We can add effects such as distortion. Distortion increases the amplitude of the gain of the sound to create a fuzzy effect. We are going to add in another melody with a fuzzed out bell sound. Let’s add a third loop under our loop entitled second that uses the distortion effect:
live_loop :distort_everything do
with_fx :distortion do
synth :pretty_bell
sleep 0.75
end
end
Here is what we should be hearing right now.
Using notes
We can also play a ring of notes by adding in a fourth loop under the distort_everything
loop. Let’s add this loop:
live_loop :notes do
use_synth :pluck
n = (ring, :d3, :d1, :d2)
play n
sleep 0.15
end
We just added a synth that sounds like the plucking of a guitar string using the notes d3, d1, and d2. With this loop added our song now sounds like this.
Adding in audio samples
At this point in the tutorial, you can download the file that I use or you can use another audio file of your choice. You can also sample yourself as well. To sample myself, I record myself screaming in Audacity using a microphone connected by a usb cable. I can use the path of the file I created in the recording process to create a loop such as this one:
live_loop :my_own_voice do
sample "/path/to/soundfile.wav"
sleep 9
end
Be sure to replace the path/to/soundfile.wav
with your own file path of the audio file you created in Audacity or the file that was downloaded.
This loop is placed at the bottom of my code below the notes1
loop.
Full code
The full code of the song is as follows:
live_loop :start do
synth :tri
sample :loop_safari
sleep 0.25
end
live_loop :second do
sample :bass_thick_c
sleep 0.5
end
live_loop :distort_everything do
with_fx :distortion do
synth :pretty_bell
sleep 0.75
end
end
live_loop :notes do
use_synth :pluck
n = (ring, :d3, :d1, :d2)
play n
sleep 0.15
end
live_loop :my_own_voice do
sample "/path/to/soundfile.wav"
sleep 9
end
My favorite feature of Sonic Pi
When I got started with Sonic Pi, I had written zero lines of Ruby. This was my favorite way to learn a new programming language because I got to hear my code make cool sounds. If you change the code slightly, it’s fun to see what it does to the sound. You can live update the sound by pressing Run
or alt/cmd R
even if you are already playing music.
One of the coolest things about Sonic Pi is that the documentation is built into the IDE. When I first started with Sonic Pi I took the examples in the documentation and changed them until they became my own sounds. This feature also comes in handy when you are getting started or if you are stuck.
Now that you know my process of creating songs in Sonic Pi, I hope this gives you inspiration to get started. You can record songs you create by pressing the Rec
button and saving the .wav
file. Please be sure to tweet at me at @JessicaGarson to let me know what cool sounds you make with Sonic Pi.
Top comments (9)
@mikeydorje I told you about Sonic Pi a little while back, did you ever end up playing with it?
Thanks @ben ! You told me about this but I couldn't remember what it was called. I've been meaning to ask you to remind me. It looks extremely cool and I plan and diving into it soon.
I’m sure you can make much better use of it now than when I first told you about it anyway. Your Ruby has come a long way, and this could be a really useful divergence from Rails to give you practice in a different context.
I just started fiddling with Sonic Pi. It's incredible! First time with Ruby too. What a wonderful language.
Awesome post @jessicagarson !!!
Right now I'm experimenting with Sonic Pi, so for sure wait for my tweet!
That’s a nice one! Is there a similar Python wrapper?
There is, I play with that sometimes too. I spoke about it as a 5 minute talk at PyCon: foxdot.org/foxdot-being-demod-at-p...
I've been wanting to get into Sonic Pi for a few months now, but it has always seemed a bit too much to take in at once. Now I want to take a stab at it again. Thanks!
I got started by taking the examples and changing them until they became my own.