开发者问题收集

VideoJS currentTime()始终返回 0

2017-05-03
2629

我正在使用 videoJs 将视频加载到内置于 react 中的管理平台中。我在这里设置了播放器:

else if (contentSource == 'arclight'){
  var options = {
    height:'216',
    sources :[{
    //src: this.state.video.url,
  //  type: 'video/mp4'
  }]
  }
  var player = videojs('player',options,function onPlayerReady() {
    videojs.log('Your player is ready!');
  })
  this.setState({
    player:player,content: contentSource
  });
}

我的视频显示在此标签中:

<video id="player" class="player"
className={`video-js vjs-default-skin vjs-big-play-centered 
${styles.vjs}`}
controls preload= "auto" data-
setup='{"example_option":true}'>
<source src={this.state.video.url} type= "video/mp4" />
<p className="vjs-no-js">
To view this video please enable JavaScript, and consider 
upgrading to a web browser that
<a href= "http://videojs.com/html5-video-support"  
target="_blank"> supports HTML5 video </a>
</p>
</video>

最后,我试图通过此方法获取正在播放的视频的当前时间

handleCurrentButton(inputId, event){
  event.preventDefault();
  var timeMark =0;
  if(this.state.content == 'vimeo'){
    this.state.player.getCurrentTime().then(function(seconds){console.log(seconds)
      timeMark=seconds;
      VideosActions.updateVideoAttribute(inputId, timeMark);
  }).catch(function(error){
  });
}
  else if(this.state.content == 'youtube') {
    timeMark = Math.round(this.state.player.getCurrentTime());
    VideosActions.updateVideoAttribute(inputId, timeMark);
}

else {
//  timeMark = this.state.player.currentTime();
  console.log(this.state.player.currentTime())
  VideosActions.updateVideoAttribute(inputId, timeMark);
}
}

问题是 player.currentTime() 调用始终返回 0。Vimeo 和 Youtube 的其他两个 getCurrentTime 工作正常。这背后的原因是什么?我试图提供有关此问题的足够背景信息,以便您能够弄清楚。 提前感谢您的帮助!

2个回答

问题是 getCurrentTime() 返回一个承诺,因此您需要在承诺被解析为对 Promise 的 .then() 函数的回调时访问时间的值。

else {

  this.state.player.currentTime().then(function(seconds){
    console.log(seconds)
    timeMark=seconds;
    VideosActions.updateVideoAttribute(inputId, timeMark);
  });

}
Ryan Tuosto
2017-05-03

值得确保您的服务器在视频 HTTP 请求上返回 206 响应,否则播放器无法很好地处理搜索。

Eran Shlomo
2018-11-08