This new release of gsvideo (0.3.10) solves an issue that affected Linux users: the GSMovie object wouldn’t loop. It’s fixed now (tested on ubuntu 7.10). It also includes the latest version of gstreamer-java (0.7). Grab the library and source packages from the links below:
Tag Archives: Linux
I recently discovered these Java bindings for GStreamer by Wayne Meissner, and started writing an alternative video library for Processing based on them. My idea is to create an alternative for the built-in Quicktime video library, which is difficult to use on Windows because its dependency on WinVDIG, and doesn’t work on Linux at all.
So I came up with this new gsvideo library, in which I will eventually re-implement all the three classes of the built-in video library: Capture, Movie and MovieMaker. The idea is that the new classes, called GSCapture, GSMovie and GSMovieMaker, will have exactly the same API as the original ones.
Read More »
I run into problems when trying to use the Carnivore library under Linux in a little network sonification project with Processing. The problem turned to be the jpcap library that comes built into the CarnivorePE server and the client library for Processing. The libjpcap.so dynamic library was incompatible with the Linux Mandriva 2008 I have installed on my machine.
So the solution was to grab the latest source code package of jpcap (0.01.16 at this time), and recompile it on my PC. After replacing libjpcap.so by the new one (available here), carnivorePE and the Processing client library started to work fine. However, I had to make two small fixes in the original code of jpcap, see here.