Android Exoplayer : Get currentTime for a live stream

6.3k Views Asked by At

How do you get the current time for a live video(rtmp) when using Exoplayer? I tried

player.getCurrentPosition() 

but the values start from 0 and not the actual time of the live stream. Is it possible to get the actual video time?

1

There are 1 best solutions below

0
On

In this case, I implement with subtraction between date now with user start date playing like this. dateStartPlaying is initialized when we want to play some content / change the content.

private long getCurrentTimeLiveStreaming(){
    return new Date().getTime() - dateStartPlaying.getTime();
}