What I tried now:
I'm working with Processing 2.0b7.
- I tried to use the same Video twice:
- maskImg = new Movie(this, "001.mp4");
img = new Movie(this, "001.mp4");
img.play();
maskImg.play();
img.mask(maskImg);
- I tried to use the same Movie instance:
- img = new Movie(this, "001.mp4");
img.play();
img.mask(img);
- I created a *.avi File with an alpha channel inside → no luck
- And I tried all this with a *.mov and a *.mp4
It worked with an *.avi an alpha channel inside, like this:
BUT: my video is now upside down...- maskImg = new Movie(this, "gimsech.avi");
img = new Movie(this, "gimsech.avi");
img.play();
maskImg.play();
img.mask(maskImg);
I'm working with Processing 2.0b7.