Currently if you happen to click play on an element before our MediaElement placeholders it, the audio will keep playing and it creates a confusing situation.
We should:
- if status = playing and player = inline then immediately load inline player
- if status = playing and player = dialog then immediately open the dialog
With the merged patch, this is already better, but it seems that it is simply not always possible to detect that a user has requests playback already, if playback did not actually start yet. The only solution i can think of in this situation, is by reusing the original video in the mediadialog, instead of cloning a new video player. There might be other advantages to this as well, but it requires some further investigation.