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
When using MediaSource that the play event is fired quickly after calling the play() method on the API or when the user clicks the play button in the player.
Expected Behavior
When using MediaSource that the
play
event is fired quickly after calling theplay()
method on the API or when the user clicks the play button in the player.Actual Behavior
The
play
event is fired after a delay. It's preloading segments first it looks like, when that is resolvedplay
andplaying
is fired right after each other. I patched it here to get a correct video startup time in the benchmark, https://github.com/playerxo/playerx/blob/26603717fa7fa99cd8b9a59d8e095abf81fea54d/src/playerx/video-shim.js#L79-L87Steps to Reproduce
play
event is only fired after the video started playing.The
play
event should ideally be fired beforebufferstart
.The text was updated successfully, but these errors were encountered: