我需要获取输入标签的视频长度:
<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