Pause/Stop MediaPlayer Android at given time programmatically

后端 未结 5 1945
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-09 12:23

I researched a little bit, but couldn\'t find any solutions to this problem: I would like to play a MediaPlayer and pause/stop it at a given time.. (ie: play from s

5条回答
  •  青春惊慌失措
    2021-02-09 12:37

    There's a time difference between videoView.start() and video prepared to play depend on video format, those time difference is probably more than 10 frames.

    so the best way to do is to start the timer inside OnPreparedListener to minimise the time difference, or even more to get the current playing duration and set a postDelayed timer at that point.

提交回复
热议问题