processing-video
processing-video copied to clipboard
movie.speed(-1.0) not working
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:
Thanx for your help 8^)))
- Walter [email protected]