Loading...
Logo
Processing Forum

data visualization application

in General Discussion  •  Other  •  2 years ago  
hi,

i have a project in which an application manipulates video, image, text and sound and creates a sort of a collage from analizing such multimedia files. i know that's perfectly possible using processing, but my question is about the distribution or the access platform. i thought about a web platform, using processing.js, but in that case, external libraries are not available, although i think it would be possible to work with php/javascript and html5 elements such as audio and video.

i could also try to export a java app and put it online, but in that case, can i work with external libraries and access files such as videos and audios?

another possibility i thought about is to export it as an application specific for each OS, but, in the case i use videos, images, etc, are they "embeded" in the app as well? and can an application access information on the web (through APIs or URLs)?

thanks!

Replies(3)

Yes, you can export a Java applet together with external libraries. To be able to access content from other domains than the domain where your applet is hosted, your .jar files need to be signed:  http://wiki.processing.org/w/Sign_an_Applet
hey mbraendle, thanks for your answer. do you know if applets allow you to work with video? can i use the regular video library?
I haven't worked with video yet.

I've tried to export one of the video examples in Processing (File > Examples ...) and signed the .jar files, but ran into the same problems others have described in this forum (do a search for "video applet"). The Quicktime library is not found.

Some seem to have managed to run video in an applet. Also, the Processing Wiki on video issues says: " As of release 0116, video playback runs just fine from the web, but video capture requires a signed applet (for security reasons). See the applet troubleshooting section for information about signed applets."