I am "seeking" the ability to seek forward and backwards on a video being played under vlcj. Information found in the documentation for vlcj API apparently refers to methods that no longer exist.
Is there still a way to do a forward and reverse seek on a video being played by vlcj? If so, how is this done?
Edit to answer questions asked by Slaw below:
I am using VLCJ 4.7.3, with vlcj-javafx V1.1.0.
On the site: https://www.tabnine.com/code/java/methods/uk.co.caprica.vlcj.player.MediaPlayer/seek
there are several references to a seek() function provided by the MediaPlayer class. That function does not exist in the current vlcj.
On a tutorial provided by TutorialsPoint at:
there is a reference to a function called
mediaPlayer().controls().skipWhile();
which not only does not exist in the current vlcj that I am using, but is not actually used in the seek example program provided below the referance!