Skip to content

Instantly share code, notes, and snippets.

@Kyoku57
Created March 14, 2020 17:27
Show Gist options
  • Save Kyoku57/712cc614de2bfaaa6f38f34cf946a011 to your computer and use it in GitHub Desktop.
Save Kyoku57/712cc614de2bfaaa6f38f34cf946a011 to your computer and use it in GitHub Desktop.
SonicPi : autotuner test
live_loop :beat do
8.times do
sample :bd_fat
sleep 0.5
sample :drum_heavy_kick
sleep 0.5
end
end
live_loop :ambiance do
sync :beat
sample :bass_trance_c, attack:1, release:2
sleep 4
sample :bass_trance_c, attack:1, release:2
end
# Very strange ... seems to a porno star scream O_o
live_loop :parole do
sync :beat
with_fx :autotuner do |c|
8.times do
sample :ambi_choir
control c, note: (scale :c4, :major_pentatonic).tick
sleep 1
end
end
end
live_loop :note do
with_fx :reverb, room:1 do
use_synth :dsaw
sync :beat
16.times do
play (scale :c3, :major_pentatonic).choose , release: 0.1
sleep 0.25
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment