Re : Just a box in OpenGL - Processing 2.0.3 (resolved)
Ah excellent, thanks! I took 2 semesters of classes where I worked with OpenGL and it's still a mystery to me haha.
View ArticleRe : A Video Capture Question??? (Capture finds device, but only get black...
I´m also struggling with this problem for quite some weeks now.What I found so far is, that the new GStreamer video library lacks capability to work with video grabbing USB devices. It seems unable to...
View ArticleRe : Unable to read big videos with processing 2.0.3
import processing.video.*; import codeanticode.gsvideo.*; Capture myCapture; GSCapture cam; void setup() { size(1024, 768); myCapture = new Capture(this, width,...
View ArticleRe : Unable to read big videos with processing 2.0.3
i try to resume, hoping that this long story could be useful for others1° As for the initial problem (2.0.3 and big videos) as for me it s now solved:--- it s not a memory problem--- it s a codec...
View ArticleRe : video files
Check out this article, it should give you what you need:-http://cvcinema.blogs.upv.es/2010/12/15/some-performance-tests-with-processing-shoud-we-say-java/
View ArticleVideo playback - detect the end of the video after playback
Hi,What is the best method to detect when a video has completed playback?I am using the below to play the video, which is standard:-// Movie handlersMovie videoAttractLoop;// Set up the sketchvoid...
View ArticlePaint Music Application not working properly
Hi,I am trying to develop a Paint music application. This is how it should work, when you draw any stroke it should play the sound associated with the color and should play continuously. Every time...
View ArticleRe : Paint Music Application not working properly
Unfortunately Minim doesn't work with Android.You should maybe try the android MediaPlayer class.Mark
View ArticleRe : Paint Music Application not working properly
I am not developing it for Android ..... any suggestions ?
View ArticleRe : Paint Music Application not working properly
I think there is a problem in the logic of the code, in way you change the frequency: during a frame, ie. a 1/60th of second, you change the frequency (and amplitude) for each dot? What is the expected...
View ArticleWindows 7 embedded not playing videos in Processing but OK in Windows Media...
Hi there,I have been developing a solution on my Mac and am now testing it on a Windows 7 Embedded machine. All works except videos simply do not play. I do not get an error message, I have tried a...
View ArticleHow can I load these twitter URLs that load normally in my browser, but not...
Hi!I'm writing a little program whose purpose is to fetch images from twitter, and which should be very simple, I think. Yet, I'm not very experienced with programming, so its giving me a headache, and...
View ArticleRe : How can I load these twitter URLs that load normally in my browser, but...
i tried that url using wget (command line tool that fetches urls) and got> wget t.co/mAtQ0Q8cot--2013-09-23 09:46:37-- http://t.co/mAtQ0Q8cotResolving t.co (t.co)... 199.16.156.75,...
View Articlebrightness tracking by golan levin (Restart)
hello guys I wanted to ask how could I do to restart this program through keyboard or mouse. thanks this i code:import processing.video.*;Capture video;int threshold = 225 ; int pixelSize = 1...
View ArticleiSight not working?!
hello all,i'm hving problem with some basic sketches...it's driving me crazy!!mine machine is 2013 13-inch MBA,and i'm running the latest processing 2.0.3when i simply do the...
View ArticleRe : A Video Capture Question??? (Capture finds device, but only get black...
For those of you who face the problem with capture devices or webcams which are not supported by the new video core library but might work under Processing 1.5.1.I just wrote everything related to the...
View ArticleRe : How can I load these twitter URLs that load normally in my browser, but...
Hello. I use the "http://" version of the link. I didn't include it in this example. That link was working last night, but now has been deactivated. But any shortened link of images found in twitter is...
View ArticleRe : iSight not working?!
some more info from apple:http://support.apple.com/kb/TS4552?viewlocale=en_US&locale=en_US
View ArticleRe : iSight not working?!
okaygot a simple answer from skype forum,http://community.skype.com/t5/Mac/OS-X-10-8-5-broke-Video-on-MacBook-Air/td-p/1891729/page/24just the matter with the webcam plugin,but do hope processing team...
View ArticleRe : brightness tracking by golan levin (Restart)
I am not sure what you mean by "restart", but usually, you just reset the global variables to their initial values.You might want to reset the fill() state too, and call background() to erase everything.
View Article