gpt4 book ai didi

javascript - 如何在 JavaScript 中检查上传视频的长度/持续时间

转载 作者:行者123 更新时间:2023-12-02 14:47:42 28 4
gpt4 key购买 nike

有没有办法检查用户上传的视频文件的长度?

尝试过.duration,但这似乎只适用于 DOM 中已引用的托管视频。

最佳答案

像这样怎么样?

// create the video element but don't add it to the page
var vid = document.createElement('video');
document.querySelector('#input').addEventListener('change', function() {
// create url to use as the src of the video
var fileURL = URL.createObjectURL(this.files[0]);
vid.src = fileURL;
// wait for duration to change from NaN to the actual duration
vid.ondurationchange = function() {
alert(this.duration);
};
});
<input type="file" id="input">

关于javascript - 如何在 JavaScript 中检查上传视频的长度/持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27550529/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com