gpt4 book ai didi

javascript - 你能以毫秒而不是秒为单位设置音频的当前时间吗? -Javascript

转载 作者:行者123 更新时间:2023-11-30 19:36:17 28 4
gpt4 key购买 nike

我正在制作需要在准确时间设置音频的东西。为此,我需要在 javascript 或等效项(如果存在)中使用 currentTime 来设置以毫秒为单位的时间。

这是我当前的代码,它将设置音频在 10 秒后开始:

<audio id="sound" src="audio/example.mp3" preload loop></audio>
var snd = document.getElementById("sound");
snd.currentTime = 10;
snd.play();

如果可能的话,我需要能够以毫秒而不是秒为单位设置时间的东西。感谢您的帮助。

最佳答案

var snd = document.getElementById("sound");
snd.currentTime = 0.001;
snd.play();

这会将当前时间设置为 1/1000 秒。但是,实际精度取决于浏览器实现和设备。因此,您应该使用毫秒来设置您的时间,但您不能保证它实际上会将时间设置为该精确索引。

关于javascript - 你能以毫秒而不是秒为单位设置音频的当前时间吗? -Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55926854/

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