241
edits
Line 103: | Line 103: | ||
oscP5 = new OscP5(this, 1065); | oscP5 = new OscP5(this, 1065); | ||
myRemoteLocation = new NetAddress("141.54.159.160", 1065); // our computer... | myRemoteLocation = new NetAddress("141.54.159.160", 1065); // our computer... | ||
myMovie = new Movie(this, " | myMovie = new Movie(this, "Natural.mp4"); | ||
myMovie.loop(); | myMovie.loop(); | ||
} | } | ||
Line 109: | Line 109: | ||
// periodically ask the captury server to send us data. | // periodically ask the captury server to send us data. | ||
tint(255); | tint(255); | ||
image(myMovie, | image(myMovie, 0, 0); | ||
if (millis()-lastMillis>5000) { | if (millis()-lastMillis>5000) { | ||
// The format is as follows: | // The format is as follows: |
edits