You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, when the user moves the seekbar forward or back, it results in many successive Player.seekTo(windowIndex, positionMs) calls in a short period of time (multiple calls per second).
With that in mind, here are the steps:
Seek forward or back through a video using repeated Player.seekTo(windowIndex, positionMs) calls.
Observe that the player state changes from STATE_READY to STATE_BUFFERING when seeking starts.
Expected result
Player state changes from STATE_BUFFERING to STATE_READY after seeking completes, allowing playback to proceed.
Actual result
Player state never changes from STATE_BUFFERING after seeking, so the video cannot play further. Seeking again or changing the player's playWhenReady state has no effect, the player still remains stuck buffering.
ExoPlayer Version
2.17.1
Devices that reproduce the issue
Devices that do not reproduce the issue
Reproducible in the demo app?
No
Reproduction steps
First, it's important to describe how our seekbar implementation works. We setup a listener on our seekbar like this:
So, when the user moves the seekbar forward or back, it results in many successive
Player.seekTo(windowIndex, positionMs)
calls in a short period of time (multiple calls per second).With that in mind, here are the steps:
Player.seekTo(windowIndex, positionMs)
calls.STATE_READY
toSTATE_BUFFERING
when seeking starts.Expected result
Player state changes from
STATE_BUFFERING
toSTATE_READY
after seeking completes, allowing playback to proceed.Actual result
Player state never changes from
STATE_BUFFERING
after seeking, so the video cannot play further. Seeking again or changing the player'splayWhenReady
state has no effect, the player still remains stuck buffering.Media
This can be reproduced with the HLS sample "Apple 16x9 basic stream (TS)" in the demo app:
https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_16x9/bipbop_16x9_variant.m3u8
Bug Report
adb bugreport
to [email protected] after filing this issue.The text was updated successfully, but these errors were encountered: