We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
watermarks on videos (Read 467 times)
watermarks on videos
Aug 29th, 2006, 2:19pm
 
is it possible to place an image over video?

import processing.video.*;
Movie myMovie;

void setup() {
 size(320, 240);
 myMovie = new Movie(this, "clip.mov");
 myMovie.loop();
}

void draw() {
 image(myMovie, 0, 0);
}

void movieEvent(Movie m) {
 m.read();
}
Re: watermarks on videos
Reply #1 - Aug 29th, 2006, 4:11pm
 
sure, if in your draw method you draw the image after the video. Es:
Code:
 void draw() {
image(myMovie, 0, 0);
image(myImage, 0, 0);
}
Page Index Toggle Pages: 1