Skip to content

Instantly share code, notes, and snippets.

View beryann's full-sized avatar

Beryann Parker beryann

View GitHub Profile
@beryann
beryann / Gradations.js
Last active September 13, 2025 16:02
Gradations with Hydra Video Synth
osc(10, 0.02, 2.369)
.modulatePixelate(o0)
.modulateRotate(o0, 0.2, 2.9)
.hue()
.invert(()=>Math.cos(time)/1.2)
//try with this:
//.saturate(()=>Math.sin(time)*20)
/:and this to zoom in, zoom out
//.scale(()=>Math.sin(time)*4,()=>Math.sin(time)*2,()=>Math.sin(time)*2)
.out()
@beryann
beryann / vintage1.js
Last active September 1, 2025 19:30
vintage1 with Hydra Video Synth
gradient(()=>Math.sin(time)*20)
.modulate(o0, 0.5)
.modulate(o0, 0.2)
.modulate(o0, 0.01)
.invert(()=>Math.sin(time)*0.2)
.diff(gradient(0.2))
.add(shape(999).modulate(o0).scale(3).kaleid().colorama(0.01).saturate(8))
.out()
@beryann
beryann / Abstractions2.js
Last active August 24, 2025 10:44
Abstractions2 with Hydra Video Synth
osc(30, 0.1,()=>time)
.blend(noise(),0.3)
.thresh()
.invert()
.colorama(()=>Math.sin(time/30)*0.5+0.5)
.modulatePixelate(o0,100,0.1)
//.repeat(20)
.rotate(0.1, 0.3)
.modulateScale(o0)
@beryann
beryann / CoeurDeLumiere.js
Created August 15, 2025 17:00
CoeurDeLumière with Hydra Video Synth
shape(200,0.5,1.5)
.scale(0.5,0.5)
.color([0.5,2].smooth(1),0.3,0)
//.repeat(10,2)
.modulateScale(o0,-0.6)
.diff(noise())
.diff(solid(()=>Math.sin(time),0,0))
.out()
@beryann
beryann / Transitions.js
Created August 11, 2025 16:46
Transitions with Hydra Video Synth
osc(6,0.02,1.6)
.modulate(voronoi(5,0).sub(gradient()),1)
.invert(()=>time)
.out()
@beryann
beryann / BlackHole.js
Created August 11, 2025 16:24
BlackHole with Hydra Video Synth
osc(6)
.add(solid(0.2,0.3,0.4))
.repeat()
.kaleid()
.modulate(o0)
.colorama(0.01)
.out()
@beryann
beryann / Invert.js
Created August 10, 2025 07:13
Invert with Hydra Video Synth
osc(6)
.add(solid(()=>Math.sin(time*0.5),0.2,0.6))
.modulate(voronoi(99))
.repeat()
.add(shape(2,0.1).invert(()=>Math.sin(time)*2).scrollY(0.2,0.1))
.out()
@beryann
beryann / Texture1.js
Created August 9, 2025 13:43
Texture1 with Hydra Video Synth
gradient(2)
.add(solid(1,0.5,1))
.add(noise(1))
.repeat(99,99)
.modulate(o0)
.out()
@beryann
beryann / LoveIt.js
Last active August 8, 2025 15:11
LoveIt with Hydra
speed = 0.8
osc(1,0.02,()=>Math.sin(time*10))
.pixelate(2,2)
//.scrollX(0.8,0.2,0.3, 0.8)
.rotate(0.5, 0.2)
.modulate(o0,0.5)
.diff(o0)
.brightness(0.2)
.blend(noise(5).rotate(0.5,0.1))
.luma(0.1,0.01)
@beryann
beryann / PointDevue.js
Created July 22, 2025 08:34
Point de vue with Hydra Video Synth
osc(1,0.3,3.8)
.modulatePixelate(o0, ()=>Math.cosin(time)*10)
.modulateKaleid(o0, 0.3)
//.pixelate(150)
.scrollX(0.2, 0.5)
.scrollY(0.2, 0.5)
.diff(o0)
.diff(voronoi())
.out()