MediaPlayerElement
has an event called SeekCompleted
, but does not have a SeekStarted
event.
This is annoying when I click the slider when the network is bad, it seems like the frame is stopped, and MediaPlayerElement
returns "PlaybackState: Playing", but actually it's not.
In this video, my network is not good, and from 00:00:06 to 00:00:19, the video frame is stopped and returns "PlaybackState: Playing". this duration depends on the network. Until 00:00:19, it returns "PlaybackState: Buffering".
So how can I set a fake buffering from 00:00:06 to 00:00:19, cause this period to the end-user, itis not playing. Thx.