Ar​é​oport Denise

from Tour de Pi by enkid0

/
  • Streaming + Download

    Includes high-quality download in MP3, FLAC and more. Paying supporters also get unlimited streaming via the free Bandcamp app.
    Purchasable with gift card

      name your price

     

lyrics

Sonic Pi source code
(without personal random seed)
------------------------------


set_mixer_control! hpf: 25
set_mixer_control! amp: 0.8
duree_intro = 8
duree_tranche = duree_intro * 3
duree_acte = duree_tranche * 3
duree_morceau = duree_acte * 3
duree_outro = duree_intro * 3
duree_totale = duree_intro + duree_morceau + duree_outro
print "durée totale: ", duree_totale / 60, " mn et", duree_totale % 60, " s"

bass_cutoff = 35
continuer = true

in_thread do
while continuer == true
sleep 1
if beat > duree_intro + duree_morceau
continuer = false
print "fin du morceau !"
end
end
end

with_fx :compressor, mix: 0.3 do
with_fx :tanh, mix: 0.2 do
with_fx :hpf, cutoff: bass_cutoff do
with_fx :slicer, prob_pos: 0.2, phase: 0.4, mix: 0.1 do
with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 0, mix: 0.2 do
in_thread do
while continuer == true
use_synth :dark_ambience
play "B1", attack: rrand(3.1, 4.8), sustain: rrand(4, 6), release: rrand(3.1, 5.4), amp: 0.25
sleep 10.14 + rrand(0, 2.7)
end
end
end
end
end
end
end
end
end

with_fx :compressor, mix: 0.3 do
with_fx :tanh, mix: 0.2 do
with_fx :hpf, cutoff: bass_cutoff do
with_fx :slicer, prob_pos: 0.3, phase: 0.15, mix: 0.1 do
with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 2, mix: 0.25 do
in_thread do
while continuer == true
use_synth :dark_ambience
play "D1", attack: rrand(3.1, 4.8), sustain: rrand(4, 6), release: rrand(3.1, 5.4), amp: 0.26
sleep 10.14 + rrand(0, 2.7)
end
end
end
end
end
end
end
end
end

with_fx :compressor, mix: 0.3 do
with_fx :tanh, mix: 0.2 do
with_fx :hpf, cutoff: bass_cutoff do
with_fx :slicer, prob_pos: 0.2, phase: 0.5, mix: 0.1 do
with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.3 do
in_thread do
while continuer == true
use_synth :dark_ambience
play "F1", attack: rrand(3.1, 4.8), sustain: rrand(4, 6), release: rrand(3.1, 5.4), amp: 0.27
sleep 10.14 + rrand(0, 2.7)
end
end
end
end
end
end
end
end
end

with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.4 do
in_thread do
sleep duree_intro
while continuer == true
use_synth :hollow
play "A2", attack: rrand(2.1, 4.8), sustain: rrand(0, 2), release: rrand(2.1, 5.4), amp: 0.30
sleep 6.14 + rrand(0, 2.7)
end
end
end
end
end

with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.45 do
in_thread do
sleep duree_intro * 2
while continuer == true
use_synth :hollow
play "C2", attack: rrand(2.1, 4.8), sustain: rrand(0, 2), release: rrand(2.1, 5.4), amp: 0.31
sleep 6.14 + rrand(0, 2.7)
end
end
end
end
end

with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.5 do
in_thread do
sleep duree_intro * 3
while continuer == true
use_synth :hollow
play "E2", attack: rrand(2.1, 4.8), sustain: rrand(0, 2), release: rrand(2.1, 5.4), amp: 0.32
sleep 6.14 + rrand(0, 2.7)
end
end
end
end
end


with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.7 do
in_thread do
sleep duree_intro * 6
while continuer == true
use_synth :hollow
play "B3", attack: rrand(1.1, 4.8), sustain: rrand(0, 2), release: rrand(2.1, 5.4), amp: 0.4
sleep 9.14 + rrand(0, 2.7)
end
end
end
end
end

with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.8 do
in_thread do
sleep duree_intro * 7
while continuer == true
use_synth :hollow
play "D3", attack: rrand(1.1, 4.8), sustain: rrand(0, 2), release: rrand(2.1, 5.4), amp: 0.41
sleep 9.14 + rrand(0, 2.7)
end
end
end
end
end

with_fx :tremolo, wave: 3, mix: 1 do
with_fx :flanger, mix: 0.5 do
with_fx :panslicer, wave: 3, mix: 0.9 do
in_thread do
sleep duree_intro * 8
while continuer == true
use_synth :hollow
play "F3", attack: rrand(1.1, 4.8), sustain: rrand(0, 2), release: rrand(2.1, 5.4), amp: 0.42
sleep 9.14 + rrand(0, 2.7)
end
end
end
end
end

credits

from Tour de Pi, released March 12, 2020

license

tags

about

enkid0 Montpellier, France

Programmer, sound coder, universes writer and other-stuff-er.

--Other music--
Collab with JB Project here:
jbd0.bandcamp.com

Utility music for agile meetings here:
scummaster.bandcamp.com
... more

contact / help

Contact enkid0

Streaming and
Download help

Report this track or account

If you like enkid0, you may also like: