For MinaCoding2025 Prompt 4: Random, FlickeredForms is coded with various random elements in LiveCodeLab & SonicPi. Using additional filters to smoothen out the animation.
Poetry
Flickering into new forms
Flickering as they transform
Shapes and Twists
Assisting into Flips
That manifests more List
Video
Code
LiveCodeLab
y =random(1,5)
ballDetail time % 13
animationStyle motionBlur
rotate time % 5, time / 5 , time % 12
simpleGradient blue,color(time % 200, wave(0.003),10)
scale 0.7 + time % 3 + sin(wave(0.003))
5 times
rotate 0, 1, time / wave(y)/1000
move 0.2, wave(y)/100, 0
wave(y*3)/150 times
rotate 1
ball -1, abs(1 - cos(time)), sin(time % 3)
SonicPi
n = ring(:c5,:d6,:e4,:a5,:b3)
percs = [:drum_cowbell,:perc_snap,:elec_blip, :perc_swash]
beeps = [:chipbass, :prophet,:piano,:blade]
sounds = [:ambi_haunted_hum,:loop_mika]
use_random_seed Time.now.to_i
live_loop :bassyflowing do
with_fx :whammy do
sample sounds.choose, pitch: 5
use_synth beeps.tick
sample percs.choose
end
with_fx :ixi_techno do
with_fx :ping_pong do
play n.tick
end
end
sleep 2
end