Skip to main content

Command Palette

Search for a command to run...

Genuary2026_16x16Audio

Audio in 16s

Updated
2 min read
Genuary2026_16x16Audio

256 Notes

256 Notes is coded in LiveCodeLab & Python with 16 samples that have 16 Sequences (16x16) (Prompt 19 of Genuary2026) Dancers.

Poem

256 Notes
Motioning with no antidotes
Sounds arriving from any angle
With each moment, their notes dabble & dangle

Audio

IllestPreacha · 256Notes

Code

LiveCodeLab

if time % 40 > 25
    bpm 40
if time % 40 < 10
    bpm 80
if time % 40 > 10 and time % 40 < 25
    bpm 60

if time % 20 > 10
    play 'tranceKick'  ,'xxx-x--xx-x--xx-'
    play "pianoLHChord" + int(random 4) ,'xxxx-x--x---x-xx'
    play "beep" + int(random 4) ,'-----xxxxx---xxx'

else
    if time % 2 == 0
        play "scratch-med" + int(random 9) ,'xx---x--x---xxx-'
        play "pianoLDChord" + int(random 4) ,'xxx--xxx-xxx---x'
        play "scratch-rough" + int(random 4) ,'-x---xxx-xxx--xx'
    else
        play "tic" + int(random 5) ,'x-xxxxxx-xx-xx-'
        play "toc" + int(random 3) ,'-x-x----x---xx--'

if time % 45 < 26
    play "tranceKick" + int(random 4) ,'xx-x--x---xxx-xx'
    play "tweet" + int(random 14) ,'---x-x-xxx-x-x-x'
    play "voltage"  ,'xx-x------x--xx-'
    play "pianoRHChord" + int(random 4) ,'-x-xxx-xxx--xx-x'

play 'alienBeep'  ,'---xx---xx-xxx-x'
play "mouth" + int(random 5) ,'-x-xx-x----xx-xx'
play "penta" + int(random 16) ,'x-xxx--xx-xx--x-'
play "warm"  ,'-xx-----x-x-x-xx-'

Python

import random as rd

seq = ['x','-']

for i in range(16):

    seqAudio = rd.choices(seq, k=16)

    seqAudio1 = ''.join(seqAudio)

    print(seqAudio1)

Output of SeqAudio1

xxx--xxx-xxx---x
xxxx-x--x---x-xx
-x-xxx-xxx--xx-x
xx---x--x---xxx-
-x---xxx-xxx--xx
x-xxxxxx-xx-xx--
-x-x----x---xx--
xx-x--x---xxx-xx
---x-x-xxx-x-x-x
xx-x------x--xx-
---xx---xx-xxx-x
-----xxxxx---xxx
-x-xx-x----xx-xx
x-xxx--xx-xx--x-
xx-----x-x-x-xx-
xxx-x--xx-x--xx-

Genuary2026

Part 6 of 48

Explorations during Genuary 2026

Up next

Genuary2026_MutationBug

Geometrical Bugs