The AudioContextOptions
dictionary (used when instantiating an AudioContext
) may contain a property named latencyHint
, which indicates the preferred maximum latency in seconds for the audio context. The value is specified either as a member of the string enum AudioContextLatencyCategory
or a double-precision value.
audioContextOptions.latencyHint = "interactive"; audioContextOptions.latencyHint = 0.2; var latencyHint = audioContextOptions.latencyHint;
The preferred maximum latency for the AudioContext
. There are two ways this value can be specified.
The best way to specify the preferred latency is to use a value form the string enum AudioContextLatencyCategory
. In fact, the default value of latencyHint
is "interactive"
(meaning the browser should try to use the lowest possible and reliable latency it can).
The value can also be specified as a double-precision floating-point value, specifying the preferred maximum latency in seconds. This provides more precise control over the balance between audio latency and device energy usage.
To determine the actual latency of the context after creating it, check the value of the context's baseLatency
property.
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'AudioContextOptions.latencyHint' in that specification. | Working Draft | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 60 | ? | 61 | No | ? | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 60 | 60 | ? | 61 | ? | ? | ? |
AudioContext
: The interface describing an audio contextAudioContext()
: The audio context constructor, which accepts a AudioContextOptions
object as an input.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/latencyHint