We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I can not get the Movie.speed() function to control speed or to reverse the direction. I am running the example from the docs
import processing.video.*;
Movie myMovie;
void setup() {
size(200, 200);
frameRate(30);
myMovie = new Movie(this, "totoro.mov");
myMovie.speed(4.0);
myMovie.loop();
}
void draw() {
if (myMovie.available()) {
myMovie.read();
}
image(myMovie, 0, 0);
}
but the player seems to ignore the call to Movie.speed() does it have to do with the video format, is there a video format that would work?
Thanks for any help sergio
Answers
https://forum.Processing.org/two/discussions/tagged?Tag=speed()
Thank you, but I am still a bit confused.
1) The documentation says that you can change the speed (hence the given example)
2) The documentation says reversing only works with some video formats
From looking at the previous posts that you linked I could not figure out if:
a) the docs are wrong and THERE IS NO WAY of controlling playback speed
b) the docs are correct and I am just using a wrong file (tried with a theora movie but no change)
Thank you for your patience. s
You're better off opening an issue there: :-@
https://GitHub.com/processing/processing-video/issues
ok thank you
https://GitHub.com/processing/processing-video/issues/64