React JW 播放器如何获取当前视频时长?
React JW player how to get current duration of video?
我正在使用 React JW player。
我的组件
<ReactJWPlayer
playerId="id"
playerScript="https://content.jwplatform.com/libraries/xxxx.js"
playlist={{"My JSON"}}
/>
效果很好。我需要获取播放视频的当前持续时间。我怎样才能在 reactjs 中做到这一点?
您可以通过以下方式访问“原始”JW 播放器
<ReactJWPlayer playerId="id" ...
let playerInstance = window.jwplayer('id');
获取JW Player的当前位置
playerInstance.getPosition();
我正在使用 React JW player。
我的组件
<ReactJWPlayer
playerId="id"
playerScript="https://content.jwplatform.com/libraries/xxxx.js"
playlist={{"My JSON"}}
/>
效果很好。我需要获取播放视频的当前持续时间。我怎样才能在 reactjs 中做到这一点?
您可以通过以下方式访问“原始”JW 播放器
<ReactJWPlayer playerId="id" ...
let playerInstance = window.jwplayer('id');
获取JW Player的当前位置
playerInstance.getPosition();