Skip to content

Intermediate Sonic Pi (Building Unity)

We are continuing our Sonic Pi unit this week.

Goals:

  • Multiple Live_Loops
    • Copy the colored code below into Sonic Pi:
    • live_loop :beat do
      # with_fx :bitcrusher do
      sample :bd_fat, rate: 1
      sleep 0.5
      # end
      end

      live_loop :cymbal do
      # with_fx :bitcrusher do
      sample :bd_tek, rate: 1
      sleep 1.0
      # end
      end

      live_loop :notes1 do
      with_fx :bitcrusher do
      sample :guit_e_fifths, rate: 1
      sleep 6.0
      end
      end

    • Play this code, then change parts of the code to make it your own.
    • When you record a NEW song, only change one thing for each time you press RUN. Your song will change over time, but not enough to make listeners think your song ended and a new song began.
  • Recording and uploading