Hi!
I developed a program in Eclipse using Processing and exported it as an Application via the Eclipse P5 exporter. The problem is, clicking the exported exe does nothing at all. The program runs fine (no error messages) when started in the command prompt with
"java -jar <jar-file-name>.jar".
Can someone tell me what's wrong with this export? I absolutely need the application to start by simply doubleclicking a symbol..
Is there a library that allows for creating custom waveforms and using them in a synthesizer, or loading them directly into the audiobuffer, or something like that? I tried Beads, but it seems like it only provides a handful of predefined standard waveforms like sine, saw etc.
this little "videoplayer" is supposed to load all the image files from a specified folder into a PImage-Array and draw them one after the other.
Problem is, it generates an OutOfMemory after drawing 53 to 54 frames. If I make it start from the beginning after frame 50 or so, everything works fine. It makes no sense to me. Shouldn't all the images have already been stored in the RAM after loading them into the array? Besides, there are only about 65 files in my test folder with a total size of 30MB, while my sketch can use up to 250MB of RAM..