Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add remixes over Mikkels demo #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions hvinningdalskolen/ckg/det_ved_jeg_ikke.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
use_bpm 55

bd = true
hh = true

live_loop :kick do
with_fx :echo, mix: 0.4 do
if bd
if one_in 2
sample :drum_bass_soft, pan: 0.4
else
sample :drum_bass_soft, pan: -0.4
end
end
sleep 0.5
end

end

live_loop :snare do
sleep 0.5
sample :drum_snare_soft
sleep 0.375
if one_in 2
sample :drum_snare_soft
end
sleep 0.125
end

live_loop :hihat do
if hh
if one_in 6
sample :drum_cymbal_open, rate: 1.5, amp: 0.5, sustain: 0.25, cutoff: 3
else
sample :drum_cymbal_closed, rate: 1.5, amp: [0.6, 1.2].choose, sustain: 0.5
end
sleep [0.5, 0.25, 0.125].choose
else
sleep 0.5
end
end

live_loop :bass do
with_synth :tb303 do
play :c3, release: 0.2, cutoff: rrand(50,130), pan: [-0.4, 0.4].choose
sleep [0.5, 0.25, 0.125].choose
end
end

live_loop :chords do
with_fx :compressor, mix: 0.6 do
with_fx :echo, mix: 0.4 do
with_synth :piano do
play chord([:c4, :f3].choose, 'm7+9')
end
sleep 0.5+0.25
end
end
end

live_loop :arp do
play chord(:c4, 'm7+9').tick, amp: 0.3, release: 0.1
sleep 0.375/3.0
end
53 changes: 53 additions & 0 deletions hvinningdalskolen/cwj/tingo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
bd = true
hh = true

live_loop :kick do
if bd
sample :drum_bass_soft
end
sleep 0.6
end

live_loop :snare do
sleep 0.1
sample :drum_snare_soft
sleep 0.25+0.125
if one_in 2
sample :drum_snare_soft
end
sleep 0.125
end

live_loop :hihat do
if hh
if one_in 1
sample :drum_cymbal_open, rate: 1.5, amp: 0.5, sustain: 0.25
else
sample :drum_cymbal_closed, rate: 1.5, amp: [0.5, 1].choose, sustain: 0.1
end
sleep [0.5, 0.25, 0.125].choose
else
sleep 0.5
end
end

live_loop :bass do
with_synth :tb303 do
play :c2, release: 0.4, cutoff: rrand(20,100)
sleep [0.2, 0.25].choose
end
end

live_loop :chords do
with_fx :echo, mix: 0.7 do
with_synth :piano do
play chord([:b6, :e4].choose, 'm7+9')
end
sleep 0.5+0.25
end
end

live_loop :arp do
play chord(:c7, 'm7+9').tick, amp: 0.8
sleep 0.2
end
53 changes: 53 additions & 0 deletions hvinningdalskolen/jah/noname.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
bd = true
hh = true

live_loop :kick do
if bd
sample :drum_heavy_kick
end
sleep 0.5
end

live_loop :snare do
sleep 0.5
sample :drum_snare_soft
sleep 0.25+0.125
if one_in 2
sample :drum_snare_soft
end
sleep 0.125
end

live_loop :hihat do
if hh
if one_in 5
sample :drum_cymbal_open, rate: 1.5, amp: 1, sustain: 0.12
else
sample :drum_cymbal_closed, rate: 1.5, amp: [0.5, 1].choose, sustain: 1
end
sleep [0.2, 0.25, 0.125].choose
else
sleep 0.5
end
end

live_loop :bass do
with_synth :dsaw do
play :c2, release: 0.2, cutoff: rrand(20,100)
sleep [0.5, 0.25].choose
end
end

live_loop :chords do
with_fx :echo, mix: 0.4 do
with_synth :piano do
play chord([:c5, :f3].choose, 'm7+9')
end
sleep 0.5+0.25
end
end

live_loop :arp do
play chord(:a3, 'm7+9').tick, amp: 0.3, release: 0.1
sleep 0.25/3.0
end
52 changes: 52 additions & 0 deletions hvinningdalskolen/jb/jb_noise.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
bd = true
hh = false

live_loop :kick do
if bd
sample :drum_bass_soft
end
sleep 0.5
end

live_loop :snare do
sleep 0.5
sample :drum_snare_soft
sleep 0.25+0.125
if one_in 2
sample :drum_snare_soft
end
sleep 0.125
end

live_loop :hihat do
if hh
if one_in 5
sample :drum_cymbal_open, rate: 1.5, amp: 0.5, sustain: 0.25
else
sample :drum_cymbal_closed, rate: 1.5, amp: [0.5, 1].choose, sustain: 0.1
end
sleep [0.5, 0.25, 0.125].choose
else
sleep 0.5
end
end

live_loop :bass do
with_synth :tb303 do
play :c2, release: 0.2, cutoff: rrand(20,100)
sleep [0.5, 0.25].choose
end
end

live_loop :noise do
with_fx :slicer, mix: 0.8 do
with_synth :bnoise do
play chord([:f7, :c3].choose, 'm7+9')
end
sleep 1.0+0.25
live_loop :arp do
play chord(:c4, 'm7+9').tick, amp: 0.4, release: 0.1
sleep 0.50/3.0
end
end
end