julien.tidal 7.09 KB
Newer Older
PLN (Algolia) committed
1

PLN (Algolia) committed
2 3 4 5
-- TODO: Intro basse volume
-- TODO: Intro rhodes volume premiere note
-- TODO: filtered outro
-- TODO: filler notes bass 8/8
6 7
-- TODO Replace scaffolding with relevant noises
setcps 0.5 -- One pattern per two seconds
PLN (Algolia) committed
8

PLN (Algolia) committed
9 10
-- Intro -- Rouge -- Blanc -- Generique -- FIN
-- 0        68       131      143          166
PLN (Algolia) committed
11 12
-- SHIT, DIV 2
-- 0        34       65       71           86
PLN (Algolia) committed
13
do
PLN (Algolia) committed
14
-- resetCycles
15 16 17 18
let intro = mask "<f!2 t!84>"
let fromVelo = mask "<f!6 t!80>"
let fromSophie = mask "<f!11 [f t] t!74>"
let rouge = "<0!30 [0 1] 0!5 [1 0 1 1] 1!5 [1!3 0] 0 [0 1!3] 1 0!3 1!4 [1 0!3] 0 0 [0 1] 1!12 0!90>"
PLN (Algolia) committed
19 20
let outro = "<0!150 1!16>"
let lOutro =  16
21 22
let whenEnd = whenmod 160 86
let whenEndRouge = whenmod 86 68
PLN (Algolia) committed
23 24
let whenRouge = someCyclesBy rouge
let whenNotRouge = someCyclesBy (1 - rouge)
PLN (Algolia) committed
25
let whenOutro = (someCyclesBy outro)
26 27 28 29 30
let gPluck = "<0.28!6 0.32!8 0.335!82>"
let prog = "<b'min7 <a'maj7 d'maj7>>"
let g = (whenEnd (# silence))
-- d12 $ whenRouge (|- note 12) $ "superpiano*4" # velocity 0.2 -- Caleur rouge
d1 $ g
PLN (Algolia) committed
31 32
  $ intro
  $ whenRouge (fast 4) -- Rouge
33
  $ whenEndRouge (|* gain (slow 16 $ range 1 0.5 saw))
PLN (Algolia) committed
34
  $ superimpose ((# "reverbkick") . (# hpf 200) . (|* gain 0.7) .(# legato "<1!4 <q!3 e>!4>"))
PLN (Algolia) committed
35
  $ "jazz" # gain 0.45
PLN (Algolia) committed
36
  # lpf 200
37
d3 $ g
PLN (Algolia) committed
38
  $ intro
PLN (Algolia) committed
39 40 41
  $ whenOutro (degradeBy (slow lOutro $ range 0.1 0.95 sine))
  $ whenRouge (sometimesBy "<0.25 0.5 0.5 <0.75 0.9>>" (mask "t(16,32)" . ply 2))
  $ whenRouge (|* gain 1.2)
PLN (Algolia) committed
42
  $ slice 4 "0 1 2 <3!4 2!4 3 3 [2 3] 3*4>"
PLN (Algolia) committed
43 44
  $ whenmod 4 2 (off "q" id)
  $ "break:10" # gain 0.5 # cut 3 -- Runner
45
d4 $ g-- Piano Nappes/Arps
PLN (Algolia) committed
46 47
  $ intro
  $ fromVelo
PLN (Algolia) committed
48
  $ whenOutro (degradeBy ("0 1!7" * (slow lOutro $ range 0.1 0.9 saw)))
PLN (Algolia) committed
49 50
  $ whenRouge (degradeBy "1 0.5!15")
  $ off "<e!3 [e|q]>" ( -- swinged echo
PLN (Algolia) committed
51 52
    whenRouge (# lpf 500)
    . someCyclesBy "<0!12 1!4 0!8 1!8>" (swing 4)
PLN (Algolia) committed
53 54 55
    . someCycles (|+ note 12)
    . (|* gain 0.78)
  )
PLN (Algolia) committed
56
  $ superimpose ( -- Arps aigus
PLN (Algolia) committed
57 58 59
    mask "<t!32 f!32 t!32 f!16 t!16 t t t f!7 t t t!16 f!10>"
    . fromSophie
    . sometimesBy (slow 4 "<0 0.25 0.5 0.75>") (ply "1 <1 2 4 8>")
PLN (Algolia) committed
60
    . struct ("t . t(<3!3 <5 [3 5]>>,8)")
61
    -- . arp "<up!3 down>"
PLN (Algolia) committed
62
    . (|+ note 12)
PLN (Algolia) committed
63 64
    . (|* amp 0.8)
    . (|+ pan 0.3)
PLN (Algolia) committed
65
  )
66
  $ note prog
PLN (Algolia) committed
67 68 69
  # "<FMRhodes1!8 FMRhodes2!8>"
  # octave 4
  # pan 0.4
PLN (Algolia) committed
70 71
  # amp 0.35
  # gain (0.54 - (slow 68 $ range 0 0.14 sine)) -- synced bass
72
d5 $ g -- RESONANT BASSLINE from Angel frappe
PLN (Algolia) committed
73
  $ fromSophie
PLN (Algolia) committed
74
  $ someCyclesBy "<1!67 0!99>" (mask "[t ~]*4")
75
  $ whenRouge (# crush 8.5)
PLN (Algolia) committed
76
  $ whenOutro (# hpf (slow lOutro $ range 0 1000 saw))
PLN (Algolia) committed
77
  $ whenNotRouge (mask "t f t <f t f f> . t f <t f> <f!3 t>")
PLN (Algolia) committed
78 79
  $ note "b2!6 <bs2!3 <a2 g2>> b2"
  # "supersaw"
80
  # room 0.85 # sz 0.8
PLN (Algolia) committed
81
  # hpf (slow 16 $ range 400 0 cosine)
PLN (Algolia) committed
82 83
  # pan (slow 16 $ range 0.2 0.3 cosine)
  # gain (slow 68 $ range 0.25 0.34 saw) -- synced piano
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
d10 $ g -- Events timings
  $ fix (sometimes (ply 2) . (# n 1) . (# hpf 4500)) ("clap")
  $ whenmod 166 75 (mask "t(8,16)" . off "h" id)
  $ every' 166 85 ((<| "a*8") . (# note "d3'maj'2'8") . (# gain gPluck)) -- FIN
  $ every' 166 83 ((>| "clap([4 [8 12] . 10 [4 0 . [16 8]]],16)") . (# gain gPluck)) -- ...Julien! :clap:
  $ every' 166 82 ((>| "clap*[8 . 16 4]") . (# gain gPluck)) -- ...and :clap:
  $ every' 166 81 ((>| "clap(5,8,0)") . (# gain gPluck)) -- Leopold :clap:
  $ every' 166 80 ((>| "clap(3,8,0)") . (# gain gPluck)) -- Gregoire :clap:
  $ every' 166 79 ((>| "clap(3,4,0)") . (# gain gPluck)) -- Gregoire :clap:
  $ every' 166 78 ((>| "clap(4,4,0)") . (# gain gPluck)) -- Sophie :clap:
  $ every' 166 77 ((>| "clap(3,4,0)") . (# gain gPluck)) -- Gregoire :clap:
  $ every' 166 76 ((>| "clap(2,4,0)") . (# gain gPluck)) -- Cyril :clap:
  $ every' 166 75 ((>| "clap(1,4,0)") . (# gain gPluck)) -- ...avec... :clap:
  $ every' 166 74 ((>| "clap(4,4,0)") . (# gain gPluck)) -- SEPTEMBRE ROSE :clap:
  $ every' 166 73 ((>| "clap") . (# gain gPluck)) -- Gregoire :clap:
  $ every' 166 72 ((>| "clap") . (# gain gPluck)) -- Gregoire :clap:
  $ every' 166 71 ((<| "e*4") . (# note "d'maj'2") . (# gain gPluck)) -- Generique?
  $ every' 166 70 ((<| "d*2") . (# note "d'maj'2") . (# gain gPluck)) -- Generique?
  $ every' 166 68 (const -- Tinks résolution
      $ off 1 (degradeBy "0 0.5!7" . rev)
      $ struct "t([16 [12 4]],16)"
      $ note (arp "down" "<b'min7 <a'maj7 d'maj7>>")
      # pan (range 0.1 0.9 saw)
      # "tink" # gain 0.8
      # room "0 0.2 0.4 0.5"
  ) -- Amis
  $ every' 166 60 ((>| note (struct "t(2,8) t(3,8)" $ arp "down" "d'maj7'4")) . (# gain gPluck)) -- Impuissants?
  $ every' 166 50 ((<| "a*4") . (# note (arpeggiate "a4'min7'4")) . (# gain gPluck)) -- Homme femme nombril
  $ every' 166 35 (const -- Tinks glitchés
      $ struct "t([12 32],16)"
      $ note (arp "up" "a'maj7")
      # "tink" # gain 0.8
      # pan (range 0.9 0.1 saw)
      # room "0 0.4"
  ) -- Moon, bientot rouge
  $ every' 166 32 ((<| "a*4") . (# note (arpeggiate "a4'maj'4")) . (# gain gPluck)) -- Hercule
  $ every' 166 30 (const $ "igor:4" # lpf 2000 # gain 0.45) --  Anarchie
  $ every' 166 15 (const -- Tinks retour
      $ off 1 (degradeBy "0 0.5!7" . rev)
      $ struct "t(12,16)"
      $ note (arp "down" "<b'min7 <a'maj7 d'maj7>>")
      # "tink" # gain 0.8
      # pan (range 0.1 0.9 saw)
  ) -- Piece
  $ every' 166 11 ((>| note "b(5,8)") . (# gain gPluck)) -- 1 Fin couple, 2-5 Sophie
  $ every' 166 9 (const -- Tinks aller
      $ off 1 (degradeBy "0 0.5!7" . rev)
      $ struct "t([6 12],16)"
      $ note (arp "up" "<b'min7 <a'maj7 d'maj7>>")
      # "tink" # gain 0.9
      # pan (range 0.9 0.1 saw)
  ) -- Vetement
  $ every' 166 7 ((>| note "~ e ~ [b d ~ e]") . (# note (arp "down" "d'maj7")) . (# gain gPluck)) -- Mains
  $ every' 166 6 ((>| note "~ ~ ~ d") . (# gain gPluck)) -- Velo
  $ every' 166 5 (struct "t([5 10],16)" . (>| note (arp "updown" "b'min7'4")) . (# gain gPluck)) -- Oreille
  $ every' 166 3 ((>| note "[b d](2,8,3)") . (# gain gPluck)) -- Main
  $ every' 166 1 ((>| note (arpeggiate "a'maj'4")) . (# gain "0.5!3 0.6")) -- CLAP
  $ note "a" # "cpluck:4" # gain 0
  # pan 0.4
d7 $ g -- Side high cello
  $ whenRouge (someCyclesBy 0.8 (off "0.625" (|+ pan 0.18)))
  $ someCyclesBy 0.2 (degrade)
  $ whenmod 8 4 (superimpose (
    (|+| note "0 <~!2 12!2> <~ 0!3> . 7")
    . (ply 2)
  ))
  $ whenNotRouge (swing "2")
  $ note (arp "<up!4 converge!2 diverge!2>" "<b'min7 <a'maj7 d6'maj7>>")
  # "cpluck:4"
  # gain (slow 100 $ range 0.1 0.34 cosine)
  # pan 0.8
  # room 0.4
  # hpf (slow 100 $ range 0 9000 cosine)
  # legato (0.7 - (slow 4 $ perlin/8))

once $ "clap([4 [8 12] . 10 [4 0 . [16 8]]],16)"
  # gain 0.6

) . (# gain gPluck)) -- Julien :clap:


once $ "cpluck:4" # gain 0.5
PLN (Algolia) committed
166

PLN (Algolia) committed
167 168
once $ "super808*" # gain 0.7

169 170 171 172 173 174 175 176
once $ "igor:0" # cut 21 # gain 0.5

once
  $ off 1 (degradeBy "0 0.5!7" . rev)
  $ struct "t(12,16)"
  $ note (arp "up" "<b'min7 <a'maj7 d'maj7>>")
  # "tink"

PLN (Algolia) committed
177
once $ "igor:4" # cut 21 # gain 0.5
PLN (Algolia) committed
178 179 180 181

once
  $ stut 8 1 "[0.1|0.125|0.05]*8"
  $ "coins" # speed ("0.9*8" + (fast 8 perlin/4)) # gain 0.5
PLN (Algolia) committed
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201

-- MATIERE PREMIERE

-- BREAKS
do
d2
  $ "break:16" # gain 0.5 # cut 2 -- Metronome

once $ "break:12" # gain 0.5 # cut 1 -- Afro-sweat

once $ "break:11" # gain 0.5 # cut 1 -- HEAVY

once $ "break:9" # gain 0.5 # cut 1 -- cloche

once $ "break:4" # gain 0.5 # cut 1 -- coin




once $ "dr" # cut 1