Hip Hop节拍
加载文本文件代码
# Hip Hop Beat
# Mehackit 2016
use_bpm 90
live_loop :biitti do
sample :bd_808, rate: 1, amp: 4
sleep 1
sample :elec_hi_snare, amp: 1
sleep 1
sample :bd_808, rate: 1, amp: 4
sleep 1
sample :elec_hi_snare, amp: 1
sleep 1
end
live_loop :luuppi do
sample :loop_breakbeat, beat_stretch: 4
sleep 4
end
live_loop :kitaramelodia do
sample :guit_e_fifths, rate: 0.5, amp: 1.5
sample :guit_e_fifths, rate: 1, amp: 0.8
sleep 1.5
sample :guit_e_fifths, rate: 1.5, amp: 0.8
sleep 1.5
sample :guit_e_fifths, rate: 1.4, amp: 0.8
sleep 3
sample :guit_e_slide, rate: 1, amp: 0.8
sleep 2
end
live_loop :ujellus do
with_fx :echo, phase: 1.5, mix: 0.5 do
use_synth :mod_beep
use_synth_defaults mod_phase: 0.125, pulse_width: 0.8, mod_wave: 2, attack: 1
play :G5
sleep 8
end
end
live_loop :hihat do
16.times do
sample :drum_cymbal_pedal, start: 0.05, finish: 0.4, rate: 3, amp: 0.5 + rrand(-0.1, 0.1)
sleep 0.125
end
4.times do
sample :drum_cymbal_pedal, start: 0.05, finish: 0.6, rate: 3, amp: 0.5 + rrand(-0.1, 0.1)
sleep 0.25
end
16.times do
sample :drum_cymbal_pedal, start: 0.1, finish: 0.3, rate: 3, amp: 0.5 + rrand(-0.1, 0.1)
sleep 0.0625
end
end