Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

HTML5 video played attribute not updating

  • 1 (رد واحد)
  • 1 has this problem
  • 2 views
  • آخر ردّ كتبه sebworld

more options

I've been experimenting with HTML5 video tag in javascript.

I'm currently trying to develop a script that checks if a user has fully watched a video, without skipping any content.

I'm doing this by interrogating the videoElement.played attribute.

If the user starts the video and skips to the end, for example. The script I have developed will detect that the .played attribute is made up of dis-continuous TimeRanges. If the video is then re-played, however, the played attribute stops getting updated further.

I have prepared a jsFiddle to demonstrate this:

http://jsfiddle.net/rNudr/6/

Google Chrome, however, does appear to work as expected on the subsequent playback updating this attribute - so I believe this to be a bug in Firefox.

I've been experimenting with HTML5 video tag in javascript. I'm currently trying to develop a script that checks if a user has fully watched a video, without skipping any content. I'm doing this by interrogating the videoElement.played attribute. If the user starts the video and skips to the end, for example. The script I have developed will detect that the .played attribute is made up of dis-continuous TimeRanges. If the video is then re-played, however, the played attribute stops getting updated further. I have prepared a jsFiddle to demonstrate this: http://jsfiddle.net/rNudr/6/ Google Chrome, however, does appear to work as expected on the subsequent playback updating this attribute - so I believe this to be a bug in Firefox.

All Replies (1)

more options

RE: The jsFiddle Worth mentioning, you need to click the "check if fully watched" button and it will output the whole seconds of the video that has been watched so far as a series of 0s and 1s. (0=not watched this second of video, 1=watched this second of the video)