diff --git a/hvinningdalskolen/ckg/det_ved_jeg_ikke.txt b/hvinningdalskolen/ckg/det_ved_jeg_ikke.txt new file mode 100644 index 0000000..78250d9 --- /dev/null +++ b/hvinningdalskolen/ckg/det_ved_jeg_ikke.txt @@ -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 \ No newline at end of file diff --git a/hvinningdalskolen/cwj/tingo.txt b/hvinningdalskolen/cwj/tingo.txt new file mode 100644 index 0000000..32f541d --- /dev/null +++ b/hvinningdalskolen/cwj/tingo.txt @@ -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 \ No newline at end of file diff --git a/hvinningdalskolen/jah/noname.txt b/hvinningdalskolen/jah/noname.txt new file mode 100644 index 0000000..41ee676 --- /dev/null +++ b/hvinningdalskolen/jah/noname.txt @@ -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 \ No newline at end of file diff --git a/hvinningdalskolen/jb/jb_noise.txt b/hvinningdalskolen/jb/jb_noise.txt new file mode 100644 index 0000000..1c97f9e --- /dev/null +++ b/hvinningdalskolen/jb/jb_noise.txt @@ -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 \ No newline at end of file