播放跟踪

  抱歉,此页面正在等待翻译成土耳其语

You can monitor the playback progress via the JS API. To do this, enable the Plugins / API / Permissions / Allow the played request option in the PRO version of the builder and then get the progress value with the played request.

player.api("played");

The value will come in percentages, taking into account rewinds and replay. If the user watches 10% of the video and rewinds to the end, the player will return real progress (10).

Another way

You need to enable event tracking in the player settings and catch the time event. This method does not take into account rewinding.

function PlayerjsEvents(event,id,data){
   if(event == "time"){
      let duration = player.api("duration");
      let time = data;
      if(duration > 0){
         if(time / duration > 0.5){
            // 50%
         }
      }
   }
}

19.12.2
2024 © PlayerJS

登录

登录

免费注册

注册
注册即表示您同意服务条款
登录(如果您有帐户)

恢复密码

恢复
忘记电子邮件?联系我们