Re : quick! help setting up a video array?
Well it seems  that the movieEvent() it is not really necessary, I got this from conclusion from a simple example I wrote:That is probably wrong, gonna ask about :) import processing.video.*; Movie um,...
View ArticleRe : quick! help setting up a video array?
It's quite possible, as videos are heavy files.I tend to avoid plug-ins, as it is required to learn their syntax as well.PGraphics, however, allows you to output an image that you drew.That's about as...
View ArticleWebKit Threading Violation - initial use of WebKit from a secondary thread. -...
"WebKit Threading Violation - initial use of WebKit from a secondary thread."I got the above error message when using video in 1.5.1. But things use to work any way. At least using the capture with my...
View ArticleRe : quick! help setting up a video array?
Ok, last update. I tried same code on 2.0b8. Then the movieEvent() method proves to be necessary. Adding that back (done in the code above) things works flawlessly and I was able to ad up to more than...
View Articlevoid movieEvent() simple question
I made some tests and got weird results, but the question isIn reference the example says:void movieEvent(Movie m){Â m.read();}And it will work with several movies with only this m.read() called inside...
View ArticleRe : quick! help setting up a video array?
it is woking for me too, but it pauses to think each mouseclick rather than being fluid and stops after 8clicks or so.in preferences i have 2000MB allocated. if i try to do more i get warnings about...
View ArticleRe : quick! help setting up a video array?
I got 20 movies running with this code below (2.0b8). Sometimes it hangs while adding  anew movie though...import processing.video.*;int maxMovies= 42;int rand = int(random(maxMovies)); Movie[]...
View ArticleRe : Why can't I play more than one AudioSample?
Hey hamoid!... thank you for this post, i really needed to solve this problem, and I couldn't do until now!!. thanks!
View ArticleRe : quick! help setting up a video array?
weird. it is highlighting void mouseReleased and saying void is an unexpected token.do i have something in the wrong place? import processing.video.*;   int maxMovies= 42;   int...
View ArticleRe : quick! help setting up a video array?
You rather don't have something. That "something" is a closing bracket for void setup().- MenteCode.
View ArticleRe : quick! help setting up a video array?
aaaah. got it.this code seems pretty comparable to the previous one. except for the position of the initial video.(where do i change that in the this last code so that it fills the screen...
View ArticleRe : quick! help setting up a video array?
i resaved the movies at half quality so that they now range from 30-130MB each, but it still lagging.any sugestions for how to streamline it so its not thinking so hard?
View ArticleInteractive Webcam code - Help needed!
This is my first semester learning processing, and clearly, I'm no expert. I have a final presentation in which I'm supposed tocreate an interactive display at an Art Exhibit. I'm attempting to use the...
View Articlevideo pixelation screen size
Hi,I want to make an RGB LED matrix with arduino that shows whatever the camera is getting,My first step is to have my video "pixelated",I found an awesome example by Daniel Shiffman [Learning...
View ArticleRe : Trouble with P2D P3D & OPENGL
With the latest beta more people have reported a "framebuffer unsupported" error, for example here and here. I don't see an issue for this problem on github though. Perhaps you should file an issue for...
View ArticleRFID and Video
Hello,I am having trouble getting a video to play once a RFID tag is placed on the reader.I have looked at the references on this site and tried google but I can't anything about getting videos to...
View ArticleRe : quick! help setting up a video array?
Don't know... I wonder if the videos were converted to image sequences they would perform better... But you would have to forget video library and handle playing by yourself, not hard to do. I had used...
View ArticleSerial communication processing.
Hello,As part of my project robot control computer I need a program that can send commands via the serial port (the side of the robot while running test with Arduino board serial monitor) so I chose...
View ArticleRe : Serial communication processing.
I don't know much about the Serial library, not having any serial device, but I believe that serialEvent() is to receive data from the serial port, not to send data. So, if you don't receive data, you...
View ArticleRe : Serial communication processing.
Thank you,I'll wait for the other comments, but my problem is that the program does not fit into serialEvent ().
View Article