what is the time unit for Web Audio API 'noteOn()' -


i trying use web audio api 'noteon(time)' play sound, not sure time unit is.

is in millisecond? or in second?

it's seconds.

the time relative audio context's currenttime, can accessed so:

var context = new audiocontext();  //....  note.noteon(context.currenttime); //will play  //....  note.noteon(context.currenttime + 1); //will play in 1 second 

Comments

Popular posts from this blog

php - Extract Text from HTTP referer -

Receive udp packets in android gstreamer -

authentication - ASP.NET Core 1.0. Bearer Token, cannot access custom claims -