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)