s0.initImage("file:///home/pln/Work/Hydra/biarritz/tuyau.jpeg")

src(s0).out(o0)

src(o0)
  .contrast(4.92)
  .brightness(() => -1.2 + 0.15 * Math.cos(time / 22))
  .luma(() => 0.2 + 0.1 * Math.sin(time/20))
  .out(o1)

src(o1)
  .scale(0.54)
  .repeatY(3)
  .out(o2)


src(o2)
  .scale(() => 1.3 + 0.4 * Math.cos(time / 200))
  .modulate(src(o2).pixelate(() => 36 + 20 * Math.sin(time / 13) / 2000))
  .out(o3)

render(o3)