1

WebオーディオAPI「noteOn(time)」を使用してサウンドを再生しようとしていますが、時間の単位がわかりません。

ミリ秒ですか?または2番目に?

4

1 に答える 1

2

秒です。

時間は、オーディオコンテキストのcurrentTimeに関連しており、次のようにアクセスできます。

var context = new audioContext();

//....

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

//....

note.noteOn(context.currentTime + 1); //will play in one second
于 2013-03-25T08:28:54.063 に答える