Re : Getting sound but no picture?
Other advices:- Put size() at the start of setup().- You probably call loop() repeatedly. I don't know the video library enough to tell if it is bad, but I don't think it is a good idea.- Avoid using...
View ArticleMinim & Super Accurate Frequency or Beat Detection / Analysis
Hi Guys!GoalI'm making audio reactive visuals. I want to isolate specific frequencies and assign different animations to them. Not sure if relevant, the music for my first project is drum n bass, but...
View ArticleRe : Minim Memory Problem
Hi, I encountered this problem and solved it by going to Processing < Preferences and increasing the "maximum available memory" to 2000MB.
View ArticleExport video without SaveFrame?
Hey,I'm working on a simple Processing app/toy for some preschoolers to play with, which uses the Kinect to let the kids make green-screen style videos in front of a virtual backdrop, and wear their...
View ArticleRe : Export video without SaveFrame?
Recording video of a realtime application at a decent resolution doesn't really work with Processing.The best alternative is to use a program like Fraps (or similar).
View Articleanother getting sound but no picture....
i am brand new to processing (and not a coder)i downloaded processing 2.0 todayi am trying to get a video to play and am getting the audio but not the imagedoes anyone have any suggestions for...
View ArticleJSON converts hexadecimal to decimal
If I am running the following java code with json version 20080701: String xmlString = "<soap:Envelope...
View ArticleRe : JSON converts hexadecimal to decimal
Moved here from Library & Tools Development, as you don't develop a tool nor a library.For such issue (which indeed is annoying, number should be numbers when not quoted only), you should open a...
View ArticleRe : another getting sound but no picture....
Just tried with Processing 2.0b8 on Windows 7. Works for me for a couple of movies. Perhaps you should try other movies, in case it is related to the format of the one you try to play.
View ArticleJSON does not allow non-finite numbers
If I am running the following java code using json 20080701 then I have no problem: String xmlString = "<Envelope><Body><Id>10e6847</Id></Body></Envelope>";...
View ArticleRe : JSON does not allow non-finite numbers
In your other message, I thought you wrote about the Json support built into Processing, since you don't mention any library. But here, I see the org.json package. So I am confused.You should not...
View Article3d quads and array problem
Hey,first post here in the forum. I tried to make 3d music visualisation. Its working but some of thepatches or quads in my caseare not drawn, or are not there? I dont really understand it because it...
View ArticleUsing Minim: How to visualise separate waveforms instead of the main out
Hey all,Does anybody know how to visualise the sounds of separate wave objects created with Minim? The examples only show how to visualise the main out.Thanks,A
View ArticleFrame smoothing, frame blending, general calming effect
Hi I just picked up processing a week ago and have created a code for a project trying to simulate synesthesia (seeing sounds as color). The general idea is there and working in Minim with a freq...
View ArticleRe : Frame smoothing, frame blending, general calming effect
Moved to Core Library Questions! Why? Read this.A simple solution would be to use transparency. For example by using no background and making your audioreactive elements transparent.Another solution...
View ArticleRe : 3d quads and array problem
You work with QUADS but the default beginShape() kind is TRIANGLES.Use beginShape(QUADS); in your Waves' display() method.
View ArticleRe : simple sound reactive ellipse (please help)
actually the code you provided is working almost exactly like i need it to! thank you very much,now i just the circles to be generated from the center of the screen, i tried doing this on line 32 but...
View ArticleRe : simple sound reactive ellipse (please help)
nice effect ;)Circle is expecting a PVector and a color... change line 32 to:circles.add( new Circle( new PVector(width/2,height/2),255));
View ArticleCapturing images from webcam
hello sir,i am working on webcam.I write following code in processing for taking images.but it shows only gray color window..And also this code doesn't turn on webcam...import...
View ArticleRe : Capturing images from webcam
You forget to start the service: webcam.start(); into setup()
View Article