X Tutup
Skip to content

video playing (Movie class) doesn't work on Linux #2242

@akosmaroy

Description

@akosmaroy

Hi,

I'm trying to load & play a video on Linux, Ubuntu 13.04, but it doesn't work:

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

unfortunately this is the only error message I get, it doesn't say what library would be missing, etc. I'm using processing 2.1 64 bit.

the code is very simple:

import processing.video.*;
Movie myMovie;

void setup() {
  size(200, 200);
  background(0);
  myMovie = new Movie(this, "/tmp/ize.mpg");
  myMovie.loop();
}

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

// Called every time a new frame is available to read
void movieEvent(Movie m) {
  m.read();
}

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    X Tutup