diff --git a/src/js/player.js b/src/js/player.js index 0686fd1..f0073ef 100644 --- a/src/js/player.js +++ b/src/js/player.js @@ -422,7 +422,8 @@ class DPlayer { */ // show video time: the metadata has loaded or changed this.on('durationchange', () => { - if (video.duration !== 1) { // compatibility: Android browsers will output 1 at first + // compatibility: Android browsers will output 1 or Infinity at first + if (video.duration !== 1 && video.duration !== Infinity) { this.template.dtime.innerHTML = utils.secondToTime(video.duration); } });