I have problem seeking into live hls stream.
When I call getCurrentPosition on videoview it returns 40 000, but when I try to seekto(20000); nothing changes, no error no action.
so if anyone has any suggestions please help me.
here is an code example:
//video is playing live
seek = 20000;
if(_vPlayer.getCurrentPosition() > seek) {
_vPlayer.seekTo(seek);
}