什么是Web Audio API'noteOn()'的时间单位

时间:2013-03-25 06:38:04

标签: web-audio

我正在尝试使用网络音频api'noteOn(time)'播放声音,但我不确定时间单位是什么。

是毫秒吗?还是第二次?

1 个答案:

答案 0 :(得分:2)

这是秒。

时间是相对于音频上下文的currentTime,可以这样访问:

var context = new audioContext();

//....

note.noteOn(context.currentTime); //will play now

//....

note.noteOn(context.currentTime + 1); //will play in one second