fix video.duration is Infinity

Fix #282 question 1
This commit is contained in:
sdvcrx 2018-08-13 14:59:23 +08:00 committed by GitHub
parent 3b2943cde8
commit f4d4f747b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
});