Re : I can't run processing
Could not run the sketch (Target VM failed to initialize). // What's Target VM??? VM means Virtual Machine. It refers to the Java's runtime itself.Can you run Processing 1.5.1 and compile programs, or...
View ArticleRe : Sound with Minim no longer works
For what it is worth, I ran the same sketch with 2.0b8 (32-bit), on Windows 7, and it ran OK, with just the "error" (warning, really) about ID3 tag.The error about sound format is strange, since the...
View ArticleRe : Processing RS-232 data corruption.
Note: you should avoid pasting images for textual information. It makes the thread heavier (not so important these days, but still) and more importantly, the information cannot be searched nor copy...
View ArticleRe : Sound with Minim no longer works
Hi PhiLho,thanks for the reply.libEGL on Ubuntu is related to OpenGL ES so as you noted this is another issue related to graphics. The strange thing is that I recall running this file several times in...
View ArticleRe : pdf export errors
Hi PhiLho,Ah Ha! That seemed to work. I should have looked more closely at the dialog. I can now create .pdf exports of a recorded sequence.I'm not quite sure how that other library got there...
View ArticleRe : 3D Error (OpenGL)
Thank you very much for replying. My drivers are the newest Dell provides for my video card (Intel gm965). I'm trying to install Intel drivers that are more updated (version 9 vs version 7) but the...
View ArticleRe : Video with matching color
Hi Kiki,Have you tried explicitly stopping whatever movie is playing before running the movie.play() method ( eg. Parte[2].play(); )? I had the same problem with sound carrying through until I stopped...
View ArticleRe : Sound with Minim no longer works
Download the Oracle official jdk and replace the processing java directory with it this will fix the sound problem. But If you export your application as a linux app then to make it work you will have...
View ArticleRe : Can't use webcam using Capture (Quicktime+VDIG) in Processing 1.5.1
The problem seems to be using the Capture class on Windows 7 or higher where not all WinVDIG versions work perfect. Version 1.01 seems to work best at this point (less errors and the image can scale...
View ArticleRe : Sound with Minim no longer works
Hi aparis3,thanks for the response and you read my mind as updating Java was what I was just about to do :)Also thanks for the setup instructions!Your suggestion worked like a charm, as the audio is...
View ArticleRe : Can hear but can't see video
Hi,I know this is a little late for a reply...nonetheless, I doubt that that size (resolution or required disc space) of the file is an issue as long as you have a relatively decent machine to run the...
View ArticlemousePressed + Fade In + Fade Out
Hello!I'm building a small installation with some old POS touchscreen monitors. The concept is simple : blue background is visible at any point there is no touch interaction of the screen. Once...
View ArticleCapture 2 pictures of users and display both of the picture on screen
Hi, I am trying write a program to take pictures of the user then show the pictures on the screen. import processing.video.*;Capture cam;Capture cam1;int count=0;PImage img;void setup() { size(1000,...
View ArticleRe : mousePressed + Fade In + Fade Out
I would try something like this:(You need to be online for image to load.)PImage standForVideo;int alphaVal = 255;void setup() { size(500, 332); standForVideo =...
View ArticleRe : mousePressed + Fade In + Fade Out
Thank you! That's very helpful and even simpler.
View ArticleShow videos with processing
Hi, im new programming with processing and i have one doubt. I have to show 3 videos, first one video, once finish first video show the second video and third video when second video finish.My code...
View ArticleRe : Video with matching color
Ty. Now it works. I paste the final Script. It was so easy, but I was very tired to understand it. Thanks ^^ps. I've icreased the threshold. It works better. import processing.video.*;Movie[] Parte =...
View ArticleRe : Video Playback jerky in Win 8
you'll have problems displaying smooth animations at 1920x1080 on that machine via Java even if you take away decoding the video (just generating something).If you need that kind of performance you...
View Article