搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

HTML5 video played attribute not updating

  • 1 回覆
  • 1 有這個問題
  • 2 次檢視
  • 最近回覆由 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.

所有回覆 (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)