I see that the MediaElement interface exposes attributes like paused, seeking, and ended. Missing from the list, however, is playing.

I know there are playing events that fire when an element starts playing, and timeupdate events events periodically while playing, but I'm looking for a way to determine whether a video is playing right now. Is there an easy way to determine this?

The closest I've got is:

!(video.paused || video.ended || video.seeking || video.readyState < video.HAVE_FUTURE_DATA)
link|improve this question

40% accept rate
feedback

2 Answers

There is not a specific attribute that will reveal whether a MediaElement is currently playing. However, you can deduce this from the states of the other attributes.

If the currentTime is greater than zero and paused and ended are false, the element is currently playing.

You may also need to check readyState to see if the media stopped due to errors.

link|improve this answer
feedback

See my response here: HTML5 video tag, javascript to detect playing status?

Basicaly, as said before there is no single property to check but according to the spec it's a combination of conditions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.