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

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -