Hey Daniel,
thank you for your support!
I tried this:
I get this error:
The Videos are the same size and length.
I also wanted to try this out. But it doesn't work.
Did I do something wrong or does it just don't work?
cheers
gimsech
thank you for your support!
I tried this:
- import processing.video.*;
Movie img, maskImg;
void setup() {
size(640,360);
background(0);
frameRate(25);
maskImg = new Movie(this, "gimsech_1.mp4");
img = new Movie(this, "gimsech_a.mp4");
img.play();
maskImg.play();
img.mask(maskImg);
}
void draw() {
image(img, 0, 0);
}
void movieEvent(Movie m) {
m.read();
}
I get this error:
- mask() can only be used with an image that's the same size.
The Videos are the same size and length.
I also wanted to try this out. But it doesn't work.
Did I do something wrong or does it just don't work?
cheers
gimsech