Quantcast
Channel: Library Questions - Processing 2.x and 3.x Forum
Viewing all articles
Browse latest Browse all 2896

Gstreamer video plugin issue

$
0
0

Hello,

Here is my program ;

import processing.video.*;

Movie myMovie;

void setup(){
  size(1280, 720);
  myMovie = new Movie(this, "test.mp4");
  myMovie.play();
}

void draw(){
  myMovie.read();
  image(myMovie, 0, 0);
}

void movieEvent(Movie m){
  m.read();
}

I just want to play a video with processing but when I run it, I've go this issue :

"A library relies on native code that's not available.
Or only works properly when the sketch is run as a 32-bit application."

Is anybody has an idea ?


Viewing all articles
Browse latest Browse all 2896

Trending Articles