Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded!
GConf Error: Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information. (Details - 1: Failed to get connection to session: Not enough memory)
I forgot something? Or it's a bug?
Thanks
PS: the video doesn't exist, it's just for example.
Paolofuse
import processing.core.PApplet;
import codeanticode.gsvideo.*;
public class Test extends PApplet
{
GSMovie movie;
public void setup()
{
size(640, 480);
background(0);
// Load and play the video in a loop
movie = new GSMovie(this, "movie.mov");
movie.play();
}
public void draw()
{
if (movie.ready())
{
movie.read();
tint(255, 20);
image(movie, mouseX-movie.width/2, mouseY-movie.height/2);
}
}
}
I think it could be a memory issue but I can't solve it.
Thanks for suggestions.
Paolofuse