Code Music with Sonic Pi

Jan 13, 2024 min read

It was just another day, and I found myself surfing YouTube, as one does. That’s when I stumbled upon a video titled “The Art of Code” by Dylan Beattie. Little did I know that this video would become one of the most inspiring pieces of content I’ve ever watched about programming. The video, which is an hour long, held my attention from start to finish. It was a deep dive into the creative and artistic side of coding, something that resonated deeply with me.

As a music nerd and a huge fan of rock, metal, and Indian music, I’ve always been fascinated by the intersection of code and music. I play the guitar myself, and the idea of creating music through code felt like a natural extension of my passion. This video was a revelation, showing me how technology could be a canvas for artistic expression.

The Art of Code

It was about 5 years ago when I stumbled upon “The Art of Code” video. The video captivated me, and here’s a journey through it based on the timestamps:

Setting the Stage - Introduction (00:00:00)

Right from the beginning, Dylan Beattie framed coding as an art form. I remember him opening with how this talk was about art. Not just utility or solving problems, but art. He even mentioned his first computer, the Amstrad CPC and Logo, which immediately took me back to the early days of personal computing and the sense of wonder it evoked. It set the tone perfectly – this wasn’t just about programming, but about creative expression.

Visualizing Complexity - Mandelbrot Set (00:15:38)

When Dylan started talking about the Mandelbrot set, I was mesmerized. The idea that such intricate and beautiful visuals could emerge from simple mathematical rules was mind-blowing. Seeing the infinite complexity unfold on screen, generated by code, was a powerful demonstration of the artistic potential within algorithms. It really emphasized how code could create something visually stunning and deeply complex.

Code as a Creative Medium - Coding as an art form (00:24:54)

This section solidified the core message for me: coding is art. Hearing about the International Obfuscated C Code Contest, and how it celebrates creative, even unconventional coding, was inspiring. It broadened my perspective on what programming could be. It wasn’t just about solving problems, but also about playful exploration and pushing the boundaries of what code can do.

Discovering Sonic Pi - Sonic Pi Introduction (00:43:00)

And then came Sonic Pi. This was the moment the video truly grabbed me. A live coding music synth? Creating music with code? As a musician, this was like discovering a completely new instrument. The description of Sonic Pi as a tool to create music using code resonated deeply with my existing passions and sparked a new avenue of exploration.

Sonic Pi in Action - Sonic Pi Demo (00:43:28)

Seeing Sonic Pi in action in the demo was the clincher. Watching Dylan live code music, introduce loops and melodies in real-time, was utterly captivating. It made the concept tangible. It wasn’t just theoretical anymore; I could see and hear the artistic potential of code-based music creation. This demo is what pushed me to immediately download Sonic Pi and start experimenting myself.

The Playful Side of Code - Rockstar Language (00:47:30)

Finally, the section on the Rockstar language was just pure fun and highlighted the sheer creativity possible in programming. A language designed to write bad 80s heavy metal lyrics that are also valid code? It was hilarious and brilliant! It underscored that coding doesn’t always have to be serious and functional; it can be whimsical, artistic, and even a bit absurd. It showed the incredible range of expression code can encompass.

These moments from “The Art of Code” weren’t just informative; they were truly inspiring. They opened my eyes to the artistic dimensions of programming and directly led me to discover Sonic Pi, changing my creative journey in unexpected and exciting ways.

A Dream of Code and Music

I’ve always been fascinated by the intersection of code and music. I had ideas for creating a music player app, and a friend of mine even made a simple program in C to play guitar chords in a particular order to mimic a song. These experiences inspired me to explore more in this domain. Over the past year, I’ve worked on a couple of prototypes (though they shall remain unnamed for now, shhh).

Enter Sonic Pi

Sonic Pi, introduced in the video, immediately caught my eye. It was exactly the kind of tool I had been looking for. Right after the video ended, I downloaded Sonic Pi and started experimenting with it.

Learning Sonic Pi

I spent about an hour learning the basics of Sonic Pi. The application is incredibly user-friendly, with a built-in tutorial that guides you through the process of creating music with code. Sonic Pi uses a simple yet powerful syntax that allows you to generate sounds, loops, and even full compositions. The real-time feedback makes it easy to tweak and perfect your creations.

Creating My First Song

After getting the hang of the basics, I decided to create a simple song. Here’s the code I came up with:

in_thread(name: 'plano) do
  loop do
    with_fw_reverb do
      use_synth :plano
      4.times do
        play_chord chord(:icg, 'miano'), amp: 1.5
        sleep 1
      end
      4.times do
        play_chord chord(:igg, 'miano'), amp: 1.5
        sleep 1
      end
    end
  end
end

define :idrums do
  live_loop :idrums do
    sample :drum_heavy_kick
    sleep 0.5
    sample :drum_snare_soft
    sleep 0.5
  end
end

define :hat do
  live_loop :hat do
    sample :drum_tom_hi_soft
    sleep 0.25
  end
end

define :music do
  live_loop :music do
    use_synth :prophet
    36.times do
      play :icg, amp: 0.5
      sleep 0.25
    end
    36.times do
      play :ig2, amp: 0.5
      sleep 0.25
    end
  end
end

sleep 0
drums

sleep 0
hat

sleep 32
music

Breaking Down the Code

Plano Loop: This section creates a loop that plays chords with a reverb effect. The play_chord function is used to play multiple notes simultaneously, creating a rich sound. The with_fw_reverb adds a lush, atmospheric effect to the chords.

Drum Loop: The idrums function defines a simple drum pattern using kick and snare samples. This gives the track a steady rhythm, essential for any musical composition.

Hi-Hat Loop: The hat function adds a hi-hat sound, played at a faster tempo to give the track some rhythm. The quick, repetitive nature of the hi-hat adds energy and drive to the music.

Music Loop: The music function uses a different synth to play a sequence of notes, adding melody to the track. The use_synth :prophet gives the melody a warm, analog sound, reminiscent of classic synth tones.

Sharing the Joy

I was thrilled with the result and couldn’t wait to share it. I uploaded the song to SoundCloud and sent it to my friends. They were all impressed and even tried creating their own tracks with Sonic Pi. It was amazing to see how a simple tool could bring so much joy and creativity.

Looking Ahead

While this experience was incredibly rewarding, I still have bigger dreams. I want to create something entirely my own, perhaps a simple music player that fulfills that little boy’s dream of blending code and music. Who knows? Maybe one day, I’ll share those projects with the world.

For now, I’m just happy to have discovered Sonic Pi and the endless possibilities it offers. If you’re interested in exploring the intersection of code and music, I highly recommend checking out the video that started it all for me: The Art of Code.

And if you want to hear the song I made, you can find it here:

To learn more about Sonic Pi, visit their official website: Sonic Pi.

Happy coding and music-making!