Loading...
Logo
Processing Forum
Hello

I would like to use processing to playback movies, however I would like to use the interface I made in maxMSP (basically 5 buttons)to control the playback. I want to use processing because the framerate drops fast. Can anyone put me on the right track? the scheme is:
MaxMSP to start playback, processing to do the playback (video and sound).

Replies(3)

Hi sam,
I usually use ur setup and I do it with the UDP protocol.
maxmsp (udpsend object to send signal to an IP)
processing ( UPD library by Stephan Cousot to receive the signal)

use the same ip for the sending (in max) and the receiving (in p5)

voilà
You could check out the oscP5 library
and the related open sound control objects in max
Hello everyone!

I want to check processing from Isadora. by isadora can transmit data via osc but I do not understand how to view them. For example, in code, how to make "void draw" a line that changes its position according to the data it receives from isadora? of course the program can also be different from isadora, the concept does not change.

/**
 * oscP5sendreceive by andreas schlegel
 * example shows how to send and receive osc messages.
 * oscP5 website at http://www.sojamo.de/oscP5
 */
 
import oscP5.*;
import netP5.*;
 
OscP5 oscP5;
NetAddress myRemoteLocation;

void setup() {
  size(400,400);
  frameRate(25);
  /* start oscP5, listening for incoming messages at port 12000 */
  oscP5 = new OscP5(this,12000);
 
  /* myRemoteLocation is a NetAddress. a NetAddress takes 2 parameters,
   * an ip address and a port number. myRemoteLocation is used as parameter in
   * oscP5.send() when sending osc packets to another computer, device,
   * application. usage see below. for testing purposes the listening port
   * and the port of the remote location address are the same, hence you will
   * send messages back to this sketch.
   */
  myRemoteLocation = new NetAddress("127.0.0.1",12000);
}


void draw() {
  background(0); 
stroke (123);
line(0, 0, 200, 300);  //************************** here what can I do?
}

void mousePressed() {
  /* in the following different ways of creating osc messages are shown by example */
  OscMessage myMessage = new OscMessage("/test");
 
  myMessage.add(123); /* add an int to the osc message */

  /* send the message */
  oscP5.send(myMessage, myRemoteLocation);
}


/* incoming osc message are forwarded to the oscEvent method. */
void oscEvent(OscMessage theOscMessage) {
  /* print the address pattern and the typetag of the received OscMessage */
  print("### received an osc message.");
  print(" addrpattern: "+theOscMessage.addrPattern());
  println(" typetag: "+theOscMessage.typetag());
}