Integrated VLC media player in android application.When for the first time the activity get opened ,trying to seek the video time for 10 sec. The code is as below
var mediaObject = Media(mLibVLC, videoUrl)
videoPlayer.media = mediaObject
videoPlayer.play()
videoPlayer.setTime(10000,true)
debug("===>isSeekable "+videoPlayer.isSeekable)
Logcat ===>isSeekable false
Now i can see from the log cat that the video is not seekable, so the seeking is not working for the initial video, but when play the next video, isSeekable is true from next time onward.
How to change this behaviour.
Note: implementation "org.videolan.android:libvlc-all:3.4.2" using this version of vlc