无法直观显示视频时长

时间:2018-04-10 13:26:29

标签: javascript html html5-video

我需要获取输入标签的视频长度:

<input id="path" type="file" accept="video/mp4,video/x-m4v,video/*" onchange="fileInput(this.files)" class="form-control-file">

<video id="preview" width="500" controls></video>

这是我的js:

function fileInput(files){
  document.getElementById('preview').src = window.URL.createObjectURL(files[0]);
  var durata = document.getElementById("preview").duration;
  console.log(durata);
}

控制台日志返回NaN 可能我需要以这种格式获得返回时间HH:MM:SS

0 个答案:

没有答案