Re : Image over a video
I't doesn't works :( ... Now I only see a white background with some lines:The image "Matriz.png" is that image:
View ArticleRe : Image over a video
Mmm, I see. Because of the scale(), the image goes out of the sketch area. Try adding translate(-width, 0); before the second image() call.BTW, why do you use the P2D mode?
View ArticleMinim Library using external Microphone
Hello,I am working on a sketch that requires a line in but I would like to use an external microphone rather than my internal mic built into the mac. Using Minim and STT.I am finding problems selecting...
View ArticleDoes the MovieMaker class exist in 2.0b9, or not?
I downloaded an example sketch (Optical Flow by Hidetoshi Shimodaira) that uses the MovieMaker class to save screen output to a .mov file. The sketch runs just fine in 2.0b9 on my MacBook Pro, and...
View ArticleRe : Getting data from port 80
Can you say a little more about "more efficient ways to share data"? I'm trying to write a program that will read and write via TC/IP. I wasn't sure if I needed to (or could) create a Server AND...
View ArticleRe : Does the MovieMaker class exist in 2.0b9, or not?
Yes, this class has been removed from Processing 2. I don't know how the sketch can work on your copy, it is indeed puzzling, unless you have some library replacing this one?Is this sketch fluid while...
View ArticleRe : Native OpenGL in Processing for Oculus Rift
I was working on the same thing this weekend. I'm pretty much a noob at OpenGL, but I was poking around the jogl API and I believe those functions in LWJGL do something like...
View ArticleRe : out of memory error when playing an array of videos sequentially
There is a method in Movie() that sadly isn't explained on the Libraries page for Movie() named dispose(). Dispose() is the way movie deletes an object and clears the memory. The problem will probably...
View ArticleRe : How to destroy Movie threads?
Dispose works the same way that the duration and stop functions work; it's an argumentless void, so you do not get a return value, nor do you have to pass an argument. If your movie is called myMovie,...
View ArticlereadStringFrom?
Hi all,I'm currently sending a string of serial data into processing. I'm using readStringUntil to end the read of the serial buffer. However, I need to read another (different) data string after...
View ArticleRe : Image over a video
I used P2D mode because I copied from an example sketch, but really I don't know why it's used...But now, I have deleted P2D and added translate(-width, 0); and it works!Really thanks to you and to...
View ArticleRe : readStringFrom?
I don't really understand your question. In my (small) understanding of the Serial library (which is a Core lib, not a Contributed one, moved the topic), you call again readStringUntil() to read...
View ArticlecreateXML not working in Processing 2.0b9?
I'm having problems with code that calls createXML() in Processing 2.0b9. For example, the sample code for createXML():http://processing.org/reference/createXML_.htmlworks fine under 2.0b8 but I get...
View ArticleRe : createXML not working in Processing 2.0b9?
I think the new way of writing this is...XML xml = new XML("something");Believe I saw an issue about it and that the reference will be updated to reflect this change.
View ArticleAudio file stuttering whilst mp3 is playing?
I use RFID to load an image, the image is a large image that it 10,000x664 pixels. When the image is loaded it loads into a 1000x664 frame and a potentiometer is used to scroll through the image. Also...
View ArticleRe : Audio file stuttering whilst mp3 is playing?
First doublecheck your problem analysis. Is the problem loading the image, displaying the image or not related to the image at all. Use different test-sketches to pinpoint the exact problem. When I...
View ArticleRe : ArrayIndexOutOfBoundsException: 1405654
could you try printing some of the values in the draw loop? I would like to see how far it gets before the error throws, and what the numbers are at the time of the error.voi draw() { for (int i = 0;...
View ArticleHow does serialEvent() gets activated?
Hi, I want to know exactly how serialEvent() gets activated. Is it always monitoring the serial port for incoming data and get called when there is data? Does it act as an interrupt for the draw()...
View Article