We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da12912 commit 5ff521eCopy full SHA for 5ff521e
1 file changed
src/processing/video/Movie.java
@@ -318,9 +318,11 @@ public void jump(float where) {
318
319
// Round the time to a multiple of the source framerate, in
320
// order to eliminate stutter. Suggested by Daniel Shiffman
321
- float fps = getSourceFrameRate();
322
- int frame = (int)(where * fps);
323
- where = frame / fps;
+ // Later disabled since playbin.getVideoSinkFrameRate() causes
+ // JNA issues with GStreamer 1.x
+ //float fps = getSourceFrameRate();
324
+ //int frame = (int)(where * fps);
325
+ //where = frame / fps;
326
327
boolean res;
328
long pos = Video.secToNanoLong(where);
0 commit comments