simple sound reactive ellipse (please help)
hey all, im doing an art project but im new to code,i need to make an ellipse start and expand each time a sound goes in pocessingi already did the drawing based on a sketch from openprocessing, now i...
View ArticleRe : mask on a videoloop is blinking
All right, that's a bit easier with all the assets.Made some changes:Put all the read()'s into draw which indeed seems to solve the flickering issue. Plus it allows for more efficient masking. Once per...
View ArticleRe : mask on a videoloop is blinking
you are awesome!! thank you very much! made my day!works perfect!thanks
View ArticleRe : OpenGL doesnt work
Don't know if this was relevent in your case but I've been putting off switching to processing 2.0 because I kept getting the same error when trying to run example sketches for the video library. I'm...
View ArticleRe : simple sound reactive ellipse (please help)
All right, so you have a Circle class which kind of works, except that you don't really use any of the parameters that are set in the constructor, such as position and color. But your audioreactive...
View ArticleRe : simple sound reactive ellipse (please help)
thank you for your repply, you are right my reactive code is not there yet! and i dont really know how to deal with it.now the thing is that the reactive factor that i need is just to make the ellipse...
View ArticleRe : simple sound reactive ellipse (please help)
Yes. That's exactly what the code example above does. When there is no sound, no circles are generated. When there is enough sound, circles are generated. It'll work best with music (aka sound across...
View ArticleCombining sketches (one video player, one rain maker)
I have two sketches that I am trying to combine. I was trying to treat each sketch as a separate function but I am running into problems due to one of the sketches being one that simply plays a video....
View ArticleRe : Combining sketches (one video player, one rain maker)
Looks simple enough...The first sketch is the simplest, you can copy parts of it into the second one.Declare the movie in the global section of the sketch, skip the size declaration, initialize the...
View ArticleRe : Processing 2.0 beta 8 and JSONObject
In the new version of the lib JSON can be both JSONArray or a JSONObject. That's handled internally, so both sets of methods needs to be available. The length (or size) function should be there. I just...
View Articleswitching videos in an array while keeping them playing.
I am designing an interactive sound and video art piece using processing. I have designed classes for audio and video. The piece itself is portrait video of people cut into 6 pieces, we have 6 subjects...
View ArticleRe : Sketch lagging
Hey thanks for your reply, sorry it's taken so long for me to get back to you.Your help has been good so far but I still have a few issues.The reason behind having background inside a loop block was to...
View ArticleRe : Problem spliting String from accelerometer and gyro
I tried to thisaxelAx=values[0].substring(3, 7);this should give me only the numbers,but I get the errorcannot invoke substring(int int) on the primitive type int
View ArticleRe : Combining sketches (one video player, one rain maker)
Hey, I have update the video sketch since this attempt and now I am even more confused! ////// VIDEO ///////////////////////////////////////////int maxMovies = 2; // Total number of moviesint...
View ArticleRe : Sketch lagging
Is there a way to get the rect() to be rendered before the draw() is complete? I still have an impression you haven't figured out how & especially when Processing renders a screen frame! Every...
View ArticleGetting sound but no picture?
The video appears to be playing as I am getting the sound when I run the sketch but no picture, I thought it might be the background but changing it with a trial and error approach has no effect. Any...
View ArticleRe : Getting sound but no picture?
You have never defined the value of passedTime, so that variable is null (unless this was intended), and the program can't compare null to a number. Null could be anything!You also forgot to add...
View ArticleRe : Getting sound but no picture?
Thank you, I have fixed those issues and the problem is gone, however it doesn't move onto the rain after the pasttime<total time. No errors though. Hmmmm
View ArticleRe : Problem spliting String from accelerometer and gyro
Indeed, values is an array of ints... (ni the code of benja, above). I am totally lost about what you are doing, what is the state of your code, etc.
View ArticleRe : Combining sketches (one video player, one rain maker)
Apparently, I suck at explaining things...But I don't remember mentioning to change the sketches into separate classes, my remarks was about copying parts of one sketch into the other, which becomes...
View Article