Re : Unable to read big videos with processing 2.0.3
l am reading once upon a time your answer:: so ::----- 500 mo == 500 mega octects (3' hD video without compression) - made by QT, DVPAL without COMPPRESSION------ read without any problems by vlc...
View ArticleRe : Unable to read big videos with processing 2.0.3
now i think that te technical datas are cleared500 MODV PAL768/576NO COMPRESSIONread with any problem byQuicKTimeVLCan so onread , sometimes (5,6/10) by processing 1.5.1 at a convenient fRratenever...
View ArticleRe : Drawing OpenGL into PGraphics with alpha 0.5f produces extremely faint...
blendMode(BLEND) (which is the default blending mode in P2D and P2D) just calls glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA). However, I think that a problem in your code is that the triangle...
View ArticlePShape method issues (update: resolved)
EDIT: RESOLVED (version issue - see below)Hi all - running processing 2.0b3 and seem to be having issues calling the set methods. I keep getting errors that look like: "The method setStroke(int, int)...
View ArticleRe : PShape method issues (update: resolved)
RESOLVED: The issue appears to be with the version of processing I was running. I had accidentally run this in 2.0b3, which was sitting on my system alongside 2.0.3 (in which the above code works).
View ArticleRe : Unable to read big videos with processing 2.0.3
dear D., thanks again for your technical explaination: i am happy to understand exactly what does the mysterious method movieEvent. And Available(); As for calling play();jump(0); pause() in setup() i...
View ArticleRe : Drawing OpenGL into PGraphics with alpha 0.5f produces extremely faint...
Hi, thank you for the quick and thorough reply! From your response and from reading the link, I see what is going on now, and I see two options for getting what I'm after:A: knowing from advance the...
View ArticleRe : Unable to read big videos with processing 2.0.3
dear D,as for the export problem: this is the error message; it seems to me that there are java virtual machine limits for exporting (heap space); but i dont know if there is a way to increase the...
View ArticleRe : Unable to read big videos with processing 2.0.3
http://wiki.processing.org/w/Troubleshooting#Out_Of_Memory_Errors_.28java.lang.OutOfMemoryError.29
View ArticleRe : Unable to read big videos with processing 2.0.3
dear D,thanks for the link...having read it i tryed1.5.1::: increasing memory allocated (preferences) to 2000= the sketch cannot run and the export is impossible.2.03 : the export is possible and it...
View ArticleRe : Unable to read big videos with processing 2.0.3
If you have a 64-bit Java JDK installed in your system OS, you can delete the 32-bit bundled /java subfolder which comes w/ the old Processing 1.5.1 installation. Doing so will force it to use the...
View ArticleRe : Unable to read big videos with processing 2.0.3
dear gtl,yes, i can do what you propose;but if you have read the precedents mails i have not only the problem for exporting the .app (or.exe), my main problem is to Read big videos and with 1.5.1 they...
View ArticleRe : Unable to read big videos with processing 2.0.3
Well, you can also rename or backup the bundled /java subfolder instead of getting rid of it forever! And whether it's gonna work? Well, Processing v1.5.1 used to come as an advanced package...
View ArticleRe : Unable to read big videos with processing 2.0.3
dear gtl,thanks for replying....yes and yes, i can do that, i didn't remember about the default install with 1.5.1!...I shall try & tell you about the result! - But i have made new experiences...
View ArticleRe : Drawing OpenGL into PGraphics with alpha 0.5f produces extremely faint...
The blending calculations that the renderer does behind the scenes are quite straightforward, if you look at the blendModeImpl() function in PGraphicsOpenGL all it does is basically to call...
View ArticleGet all the files from a folder?
I have several .SVG's I'm loading from a folder, and I'm wondering if there's a way to load everything from a folder regardless of how many objects are in there. I saw the selectFolder() function but...
View ArticleRe : Get all the files from a folder?
A close example of what you want:http://forum.processing.org/topic/listing-last-10-modified-files-in-directory
View ArticleJust a box in OpenGL - Processing 2.0.3
Hey, just a (hopefully) quick question about getting OpenGL up and running in Processing 2.0.3. Every time I update Processing I end up fighting for way too long trying to display even just a simple...
View ArticleRe : Unable to read big videos with processing 2.0.3
dear all, & especially D and GTL,today new experiences and some big progress I have "cut" my initial big .mov videos & again tried to read them with 2.0.3:-----no sound, very slow...
View ArticleRe : Just a box in OpenGL - Processing 2.0.3 (resolved)
gluPerspective() sets the projection matrix, not the modelview. The following code should work:gl2.glMatrixMode(GL2.GL_PROJECTION); gl2.glLoadIdentity(); glu.gluPerspective(45.0, width/height, .1,...
View Article