Path: blob/master/data/post/sonic_pi_example.rb
21467 views
use_bpm 1301use_synth_defaults sustain: 023live_loop :drums do4sample :drum_heavy_kick, amp: 25sleep 16sample :drum_snare_hard7sleep 18end910live_loop :hi_hat do11sample :drum_cymbal_closed, amp: 0.512sleep 0.513end1415live_loop :bass do16use_synth :pluck1718notes = %i[19Eb3 Eb3 Eb320B2 B2 B221Fs2 Fs2 Fs222As2 As2 As2 As223]2425beats = %w[262.0 1.0 1.0272.0 1.0 1.0282.0 1.0 1.0291.5 1.0 0.5 1.030].map(&:to_f)3132with_fx :reverb do33play_pattern_timed notes, beats34end35end3637live_loop :lead do38use_synth :piano3940notes = %i[41As4 As4 As4 As4 Gs4 As4 As442As4 As4 As4 Gs4 As4 As443Db5 As4 Gs4 Fs444Eb4 Eb4 F4 Fs4 Eb445]4647beats = %w[482.00 0.50 0.25 0.25 0.25 0.75 2.00490.50 0.25 0.25 0.25 0.75 1.50501.00 1.00 1.00 1.00510.50 0.50 0.50 0.50 0.5052].map(&:to_f)5354with_fx :reverb do55play_pattern_timed notes, beats56end57end585960