Hi!
The jump() doesnt work for me in the video library when im using processing on Raspberry PI.
Any tips how to solve this or using another library for video? Or another way creating looppoints in video?
I get this errormessage:
#
A fatal error has been detected by the Java Runtime Environment:
#
SIGSEGV (0xb) at pc=0x76ecdf4c, pid=1498, tid=1755313248
#
JRE version: Java(TM) SE Runtime Environment (8.0_51-b07) (build 1.8.0_51-b07)
Java VM: Java HotSpot(TM) Client VM (25.51-b07 mixed mode linux-arm )
Problematic frame:
C [libarmmem.so+0x2f4c]
#
Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
An error report file with more information is saved as:
/tmp/hs_err_pid1498.log
got a frame 640 368 true #
If you would like to submit a bug report, please visit:
http://bugreport.java.com/bugreport/crash.jsp
The crash happened outside the Java Virtual Machine in native code.
See problematic frame for where to report the bug.
# Could not run the sketch (Target VM failed to initialize). For more information, read revisions.txt and Help → Troubleshooting.
Heres the sketch:
import processing.video.*;
Movie movie;
void setup() {
size(640, 360);
background(0);
// Load and play the video in a loop
movie = new Movie(this, "transit.mov");
movie.loop();
}
void movieEvent(Movie m) {
m.read();
}
void draw() {
//if (movie.available() == true) {
// movie.read();
//}
image(movie, 0, 0, width, height);
}
void keyPressed() {
if (key == 'j') {
movie.jump(1.0);
}
}