我正在尝试使用网络音频api'noteOn(time)'播放声音,但我不确定时间单位是什么。
是毫秒吗?还是第二次?
答案 0 :(得分:2)
这是秒。
时间是相对于音频上下文的currentTime,可以这样访问:
var context = new audioContext();
//....
note.noteOn(context.currentTime); //will play now
//....
note.noteOn(context.currentTime + 1); //will play in one second