eneim / kohii

Android Video Playback made easy.
https://eneim.github.io/kohii/
Apache License 2.0
378 stars 51 forks source link

Replay video after end on tap of a button #198

Open rahul-sysquare opened 3 months ago

rahul-sysquare commented 3 months ago

Hi,

I am showing a "play again UI" after the video ends. I want to replay video on tap of play again button. How I can do that?

I'm using tag and when video ends the state is not resetting so I'm not able to replay video.

eneim commented 2 months ago

IIRC ExoPlayer tells developer to simply seek the Video to the starting point and call play again. Please try that.

rahul-sysquare commented 2 months ago

How we can seek in your library? can you share code snippet?

eneim commented 1 month ago

Given that you have the Playback instance, calling playback.rewind() should do it.

--> https://github.com/eneim/kohii/blob/79f5ec327e3db627d88b089931b63d1e28e4e2ee/kohii-core/src/main/java/kohii/v1/core/Playback.kt#L479