Map of Sound

Sound Map // //

Mostrando entradas con la etiqueta Processing. Mostrar todas las entradas

TouchDesigner + Processing + ManyCam

Noise filter processing image.








Resolume Arena + ManyCam + Processing + iDisplay

Video interface with 2 monitors with mapping in Resolume.






TouchOSC + Processing

OSC communication to control processing with acelerometer.






Pong!

Pong!Pong!Pong!Pong!Pong!Pong!Pong!Pong!Pong!Pong!Pong!Pong!


Visualization









Cube

Just a Cube in Processing.


Syphon + Processing


Syphon es una Tecnología Open Source para MAC OSX la cual nos permite intercambiarfotogramas de video a gran velocidad o imágenes fijas entre aplicaciones a tiempo real.Esto nos permite aprovechar el poder expresivo de diferentes herramientas ( software) para editar, mezclar etc, y enviar el contenido a otra aplicación para hacer otra tarea.Un ejemplo es poder realizar una edición de Vj en directo con Modul8 y enviar la mezclade la composición a MAdmapper. cada uno realiza una tarea distinta.

Libreria Syphon-Processing

//Code
void setup() {
  size(400,400, P3D);
  server = new SyphonServer(this, "Processing Frame Server");

}

void draw() {

  server.sendImage(img);
}

public void setup() {
  size(480, 340, P3D);
  client = new SyphonClient(this, "Simple Server");

}

void draw() {
  if (client.available()) {
    canvas = client.getGraphics(pg);

  }
}






ScreenCapturerColorsort

Real time Graphic Interchange Format of the screen capture to a color sort graphics. /Never Win pt.1.



Screen Capturer Peasycam


Real time GIF capture with ScreenCapturer and peasycam library.