Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WebオーディオAPI「noteOn(time)」を使用してサウンドを再生しようとしていますが、時間の単位がわかりません。
ミリ秒ですか?または2番目に?
秒です。
時間は、オーディオコンテキストのcurrentTimeに関連しており、次のようにアクセスできます。
var context = new audioContext(); //.... note.noteOn(context.currentTime); //will play now //.... note.noteOn(context.currentTime + 1); //will play in one second