Porting GLGraphics Bloom example to Processing 2.0b0.7
Hi!While I've started reading on GLSL again (third try, maybe this time it'll stick :) ), I do not yet know how it works internally...For many of my sketches, I just used the beautiful bloom effect...
View Article[VIDEO] Problem displaying big panoramic video
HiI made a panoramic video (using PTGui pro), which generated a 5500 x 768 .mov fileWhen I try using this in a sketch, it loads fine (no errors being shown) but it just doesn't display anything.Is...
View ArticleWebcam - Cube
Hey guys,i have a big problem. I tried to create a cube whit the surface of the webcam-pictures. I want to click six times and every time the picture of the webcam will save in the folder, but the cube...
View ArticleRe : Webcam - Cube
You want to map images onto a cube? Or do you want to map the webcam image onto it?Please use the "Insert Code" button next time!
View ArticleRe : Webcam - Cube
Oh sorry for that!Well, i want to map the webcam images onto the cube, but it doesn´t work...:(
View Articleminim- extract all audio data from wav/mp3 at once
I'm trying to use processing to extract all the data from a wav or mp3 file at once. similar to the getArray() method in minim, but I want to perform this on the entire audio file, not just the part...
View ArticleRe : Strange XML structrue after Facebook call.
Thanx PhiLho! that did it!what is the difference here?
View ArticleRe : [VIDEO] Problem displaying big panoramic video
There is a resolution limit in the compression codec.For example H.264 is constrained to 4096×2048.Try Theora. It's virtually limitless in terms of resolution and has wide multi-platform support.It...
View ArticleRe : Strange XML structrue after Facebook call.
I don't have the 1.5 code at hand right now, but I think the difference is that the XMLElement constructor with a string isn't designed to parse an XML string...IIRC, it is actually made to create a...
View ArticleRe : [VIDEO] Problem displaying big panoramic video
Thanks for the reply, I'll see where that takes me.I kept on trying to solve it and I got it to work with the following setup: Processing 1.5 , while specifying size(5500,768,P2D)It runs on both mac...
View Articleissue about P3D
Hi! I`m new to processing.When i try to use the P3D mode i get this exceptions:java.lang.NoClassDefFoundError: javax/media/opengl/GLAutoDrawable at...
View ArticleUsing sound in processing?
So I'll admit I am a complete beginner when it comes to processing and the other day I was browsing some of the works on openprocessing.com and I came across an amazing program by Anton Pugh called...
View ArticleRe : Using sound in processing?
Yes, Anton was so kind to include the code for this already with comments //I've made the required changes yellow in the adapted code below.Some forum-related remarks. I've moved this thread to Core...
View ArticleRe : Using sound in processing?
Thank you for all the help amnon, however, even after commenting out the correct lines of coding, I can't seem to get the program to run in processing (the original program with the original sound...
View ArticleDo you know whether it is possible or not to put minim and video together in...
well.. it's been about 4 months to learn 'Processing'and I have to admit that I'm not good at understanding 'array' and 'class'however, I wanted to mix video and audio effect so I has been trying to...
View ArticleRe : Using sound in processing?
The original code does it's thing based on an audio file.The adapted code (as posted above) does it's thing based on real-time input.Both codes work as-is. Please clarify what you want.Do you want to...
View ArticleRe : Do you know whether it is possible or not to put minim and video...
To answer the question in the title of your post: yes.I can recommend the book Learning Processing by Daniel Shiffman if you want to learn more about arrays and classes. Of course there are also other...
View ArticleXMLElement Problem in Processing 2.0b7
I was trying to use the code on the following page - http://wiki.processing.org/w/Facebook,_REST_API and got a really unexpected problem.at - XMLElement[] usersXml;it says - Cannot find a class or type...
View ArticleRe : Do you know whether it is possible or not to put minim and video...
Thank you for answering me !! I didn't know how to make a question m.m Here is First code-import ddf.minim.*;import ddf.minim.analysis.*;Minim minim;AudioInput voice;FFT fft;float volume;float...
View Articleissue with integer division of zero padded integers
Processing 2.0b6 on Linux Ubuntu 12.04Whileprintln(3456/10); gives : 345println(03456/10);answers : 183and the same with :println(003456/10); ->183andprintln(0003456/10); ->183and same problem...
View Article