We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi all,
I'm trying to use the glvideo library to play some videos that are located on a webserver. This works fine one my Mac. Though when I use it wit Raspbian I get the following error:
GLVideo: uridecodebin0: No URI handler implemented for "http". Debugging information: gsturidecodebin.c(1427): gen_source_element (): /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0
And here is the testcode that I'm using.
import gohai.glvideo.*; GLMovie[] videotest = new GLMovie[20];
void setup() { size(500, 500, P2D); videotest[0] = new GLMovie(this, "http://www......mp4"); videotest[0].loop(); }
void draw() { background(0); if (videotest[0].available()) { videotest[0].read(); }
image(videotest[0], 0, 0, width/2, height); }
Do you know if there is any possible way to solve this? Thanks in advance!