Re : Video Playback jerky in Win 8
Hi, zumbareeyea you're definitely right with that1. i tried everything i could to optomize the video playback but celerons r just not cut out for fullscreen video playback in HD within a multimedia...
View ArticleCheck whether Arduino is connected via Serial( USB) with the Help of the...
HI, I have programmed a gui and I want to realize a button that checked, if the arduino is connected to the pc via USB(serial) and I used the Serial library. When the Arduino is connected so it will...
View ArticleRe : AudioRecoder feedback sounds.
I found one answer on this thread: https://forum.processing.org/topic/minim-is-there-a-way-to-getlinein-without-pushing-audio-back-outApparently, you should call mute() on your entry line:in.mute(); It...
View ArticleRe : Minim: Is there a way to getLineIn() without pushing audio back out?
It works. Thanks for the help. It seems weird though because I've seen sketches running without the audio feedback that didn't use mute(), like this one:http://www.openprocessing.org/sketch/28551
View ArticleRe : Minim getLineIn feedback
How about sketches like this one, which don't produce a feedback loop and don't use mute() ?http://www.openprocessing.org/sketch/28551
View ArticleRe : Minim: How to remove audio through speakers. Involuntary feedback.
I found another answer on this thread: https://forum.processing.org/topic/minim-is-there-a-way-to-getlinein-without-pushing-audio-back-outApparently, you should call mute() on your entry...
View ArticleSerial data display
Hello Everyone;I'm trying to display some simple serial data coming from an Arduino to a processing applet in way such that the continuous data keeps on scrolling down in a fashion similar to the...
View ArticleRe : Show videos with processing
Hi edu_333you should probably find out the length of the first movie http://processing.org/reference/libraries/video/Movie_duration_.html then compare it with how much time has elapsed since the first...
View ArticleNetwork Interface selection with the processing.net.Server object
I have a computer with two wired network interfaces and I would like to specify one on which to run a Server object. Does anyone know how to do that? I know that you could find out which one it is on...
View ArticleRe : Serial data display
I suggest to search (from Processing.org, giving more results than here) scroll or scrolling, you will find lot of tricks and examples of code.
View ArticlePShape bug?
Hi, I have code that draws a group of pshapes. Each child is a line of random data like a spectrogram. The drawing looks screwed up on one side and I'm pretty sure I'm not doing anything wrong in the...
View ArticleRe : PShape bug?
I just tried using the P2D renderer instead and that seems to have resolved the drawing issue i was having using the opengl renderer. So, I guess it's just OPENGL. No matter what renderer I use, I...
View ArticleRe : PShape bug?
"createShape(), or this particular variation of it, is not available with this renderer."You forgot a golden rule: size() should be the first call in setup().
View ArticleRe : PShape bug?
Oh yes, okay that fixes the error message that was appearing. The drawing is still not working though
View ArticleRe : video queue mixer
I'm in the process of adding this feature to a video mixer. I'm working with loops and speed control, so timing the crossfade depends on the sketch's frameRate and is never exact. If you were limited...
View ArticleRe : Show videos with processing
I find that Processing 2.0's use of seconds (as opposed to frames) to time a video clip makes it difficult to reach certain logical conditions. I need to add an extra frame (1 second / frames per...
View ArticleChanging which video is playing on button press
Hello,I currently have a sketch here, that runs a video in a circle that follows the mouse. I would like to get it so that the video changes when a button is pressed.I have it that the video changes...
View Article