Noise.tidal 1.16 KB
Newer Older
1 2 3 4
module Funk where
  funk_noise = superimpose (const -- Bris de vers spatial
    $ degradeBy (slow 4 "<0.75 0.5 0.25 0.1>")
    $ someCycles (# speed 0.5)
PLN (Algolia) committed
5
    $ stut "[4|2]" 0.9 "[q|h]"
6
    $ stut' 2 "h" ((|* gain 0.9) . (|+ note (slow 4 "<[2|4] [0 -2]>")))
7 8
    $ "coins"
    # octave 2 -- 4=creepy
PLN (Algolia) committed
9
    # gain (slow 16 $ range 0.5 0.8 saw)
10 11
    # pan perlin
    # gain 0.4
12 13
    )
    $ superimpose (const -- Insectes
PLN (Algolia) committed
14
    $ slow 4
15 16
    $ jux rev $ "insect(<1 3 4 5>,8)"
    # n (slow 3 $ "<0 1 2 3>")
PLN (Algolia) committed
17
    # gain (slow 2 $ range 0.6 0.9 perlin)
18 19
    # pan 0.8
    )
PLN (Algolia) committed
20
    $ superimpose (const -- Fond diffus cosmologique
21 22
    $ slow (slow 4 "<2 4 8>")
    $ stut' 4 "e" (|+ note (scale "major" "[2|5]"))
23
    $ s "~ cosmicg:0"
PLN (Algolia) committed
24
    # gain (slow 33 $ range 0.3 0.4 perlin)
25 26
    # speed (range 0.125 0.95 perlin)
    # pan (range 0.4 0.6 perlin)
PLN (Algolia) committed
27 28
    )
    -- bourrasque occassionnelle
PLN (Algolia) committed
29
    $ rarely (# gain 0.5)
PLN (Algolia) committed
30 31 32 33 34
    $ jux (rev . segment 2)
    $ s "space:3"
    # speed (slow 2 $ range 0.15 0.5 perlin)
    # pan (slow 4 $ range 0.45 0.55 perlin)
    # gain 0
35 36 37

d10
-- $ (* gain 0.75)
PLN (Algolia) committed
38 39 40 41
$ funk_noise
-- effects to add to noise?
-- # hpf (slow 6 $ range 0 1500 sine)
-- # lpf (slow 100 $ range 1500 20000 sine)