I am facing some with androidFfmpeg library on video seek.
Can anyone help me out on this reported issue. jni_player_seek problem
I am facing some with androidFfmpeg library on video seek.
Can anyone help me out on this reported issue. jni_player_seek problem
If I saw that correctly, the Android FFMPEG library uses android.widget.SeekBar in its VideoActivity .
You might have to call the method onFFUpdateTime(long currentTimeUs, long videoDurationUs, boolean isFinished) or implement a seekbar yourself according to this tutorial.
Currently player_seek is using Asynchtask, You should run play_seek on main thread, do not use Asynchtask.
I am running on main thread and player_seek is working as expecting.