SonicPiRemix_2023-04-04

SonicPiRemix_2023-04-04

Today's remix will be the following code snippet from @iamnotsonicpi bot

Original Tweet

use_random_seed 2

 live_loop :spoilt_child do 
 play choose( [ :Cs2, :G4,  :D4 ] )      
 play :C2  ,delay: 0.5 ,sustain: 1 ,release: 1 ,amp: 1 
 sleep 0.125 
 sleep 4 
 end

First Remix

IllestPreacha · 2023 - 04 - 11 RemixingOf 04 - 04 Part1

use_random_seed 2

live_loop :spoilt_child do
  with_fx :gverb, mix: 0.34 do
    with_fx  :ping_pong, mix: 0.75 do
      use_synth [:piano,:prophet].choose
      play choose( [:Cs2,:G4,:D4, :As4 ] )
      with_fx :wobble do
        play [:C2,:E2,:As2].choose  ,delay: 0.5 ,sustain: dice(2) ,release: dice(2),amp: dice(3)
      end
    end
  end
  sleep [0.125,2,4].choose
end

Second Remix

IllestPreacha · 2023 - 04 - 11 RemixingOf 04 - 04 Part2

use_random_seed 100

live_loop :spoilt_child do
  with_fx [:flanger,:wobble].choose, mix: 0.25 do
    with_fx  :ping_pong, mix: 0.95 do
      use_synth [:piano,:prophet].choose
      play choose( [:Cs2,:G4,:D4, :As4 ] )
      with_fx [:wobble,:whammy,:echo].choose, mix: 0.20 do
        play [:C2,:E2,:As2].choose  ,decay: dice(2) ,delay: 0.5 ,sustain: dice(2) ,release: dice(2),amp: dice(3)
      end
    end
  end
  sleep [2,4,8].choose
end