We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using Processing 4 on MacBook Pro M1 Sonoma 14.5
here's my sketch - import processing.video.*;
Movie movie;
void setup(){ size(640,480); movie=new Movie(this,"test.mp4"); movie.loop(); movie.speed(-1.0); }
void movieEvent(Movie movie){movie.read();}
void draw(){ set(0,0,movie); }
and here's the error (Processing core video:18742): GStreamer-CRITICAL **: 12:48:12.468: gst_segment_do_seek: assertion 'start <= stop' failed 0:00:01.171305000 �[35m18742�[00m 0x164893ed0 �[31;01mERROR �[00m �[00m qtdemux qtdemux.c:1537:gst_qtdemux_do_seek:�[00m inconsistent seek values, doing nothing
Thanx for your help 8^)))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using Processing 4 on MacBook Pro M1 Sonoma 14.5
here's my sketch -
import processing.video.*;
Movie movie;
void setup(){
size(640,480);
movie=new Movie(this,"test.mp4");
movie.loop();
movie.speed(-1.0);
}
void movieEvent(Movie movie){movie.read();}
void draw(){
set(0,0,movie);
}
and here's the error
(Processing core video:18742): GStreamer-CRITICAL **: 12:48:12.468: gst_segment_do_seek: assertion 'start <= stop' failed
0:00:01.171305000 �[35m18742�[00m 0x164893ed0 �[31;01mERROR �[00m �[00m qtdemux qtdemux.c:1537:gst_qtdemux_do_seek:�[00m inconsistent seek values, doing nothing
Thanx for your help 8^)))
[email protected]
The text was updated successfully, but these errors were encountered: