gpt4 book ai didi

Javascript 持续时间显示无效

转载 作者:行者123 更新时间:2023-11-29 18:54:13 25 4
gpt4 key购买 nike

<分区>

我正在尝试获取每个 mp3 声音的持续时间,但有时它显示持续时间,而其他时候它显示无效

我想以 hh:mm:ss 格式打印时间。

显示持续时间的 Div block :

var duration17 = document.getElementById("audio-17").duration;
duration17 = secondstotime(duration17);
document.getElementById("duration-17").innerHTML = duration17;

我将秒数转换为正确时间的函数:

//convert seconds to the proper time duration
function secondstotime(secs)
{
var t = new Date(1970,0,1);
t.setSeconds(secs);
var s = t.toTimeString().substr(0,8);
if(secs > 86399)
s = Math.floor((t - Date.parse("1/1/70")) / 3600000) + s.substr(2);
return s;
}

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