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
The VideoPlayer plugin currently has some logic on seek() to resume video playback if it was already playing when seek() was called. You can find the logic here and then here.
Unfortunately this is currently not working - the playback doesn't resume. I checked with @bjornvanspengen and @tomvdbroek and we believe the issue lies in the fact that the play() is called before the video player is ready to play after the seek.
I think the player needs to wait for the canplay player event before it can play. I will be submitting a PR with this solution soon.
The text was updated successfully, but these errors were encountered:
Hi SDK team,
The VideoPlayer plugin currently has some logic on
seek()
to resume video playback if it was already playing whenseek()
was called. You can find the logic here and then here.Unfortunately this is currently not working - the playback doesn't resume. I checked with @bjornvanspengen and @tomvdbroek and we believe the issue lies in the fact that the
play()
is called before the video player is ready to play after the seek.I think the player needs to wait for the
canplay
player event before it can play. I will be submitting a PR with this solution soon.The text was updated successfully, but these errors were encountered: