音频时间获取
Posted vofill-work
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了音频时间获取相关的知识,希望对你有一定的参考价值。
var myVid1=document.getElementById("audio_1");
$(".div_audio_1 span").text(audioDeal(myVid1.duration.toString().split(".")[0]));
function audioDeal(time) {
var hour = "";
var min = "";
var sec = "";
if(Math.floor(parseInt(time)/3600) < 10) {
hour = "0" + Math.floor(parseInt(time)/3600);
} else {
hour = Math.floor(parseInt(time)/3600);
}
if(Math.floor(parseInt(time)%3600/60) < 10) {
min = "0" + Math.floor(parseInt(time)%3600/60);
} else {
min = Math.floor(parseInt(time)%3600/60);
}
if(parseInt(time)%3600%60 < 10) {
sec = "0" + parseInt(time)%3600%60;
} else {
sec = parseInt(time)%3600%60;
}
return hour + ":" + min + ":" + sec;
}
以上是关于音频时间获取的主要内容,如果未能解决你的问题,请参考以下文章