The AudioContextOptions dictionary is used to specify configuration
when constructing a new web.audio.AudioContext
object to represent
graph of web audio nodes.
The AudioContextOptions dictionary is used to specify configuration when constructing a new `web.audio.AudioContext` object to represent graph of web audio nodes.
(latency-hint this)
Property.
The web.audio.AudioContextOptions
dictionary (used when instantiating
web.audio.AudioContext
) may contain a property named latencyHint,
indicates the preferred maximum latency in seconds for the audio
`audioContextOptions.latencyHint = "interactive"; audioContextOptions.latencyHint = 0.2;
var latencyHint = audioContextOptions.latencyHint;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/latencyHint
Property. The `web.audio.AudioContextOptions` dictionary (used when instantiating `web.audio.AudioContext`) may contain a property named latencyHint, indicates the preferred maximum latency in seconds for the audio `audioContextOptions.latencyHint = \"interactive\"; audioContextOptions.latencyHint = 0.2; var latencyHint = audioContextOptions.latencyHint;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/latencyHint`
(sample-rate this)
Property.
The web.audio.AudioContextOptions
dictionary (used when instantiating
web.audio.AudioContext
) may contain a property named sampleRate,
indicates the sample rate to use for the new context.
`audioContextOptions.sampleRate = 44100;
var sampleRate = audioContextOptions.sampleRate;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/sampleRate
Property. The `web.audio.AudioContextOptions` dictionary (used when instantiating `web.audio.AudioContext`) may contain a property named sampleRate, indicates the sample rate to use for the new context. `audioContextOptions.sampleRate = 44100; var sampleRate = audioContextOptions.sampleRate;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/sampleRate`
(set-latency-hint! this val)
Property.
The web.audio.AudioContextOptions
dictionary (used when instantiating
web.audio.AudioContext
) may contain a property named latencyHint,
indicates the preferred maximum latency in seconds for the audio
`audioContextOptions.latencyHint = "interactive"; audioContextOptions.latencyHint = 0.2;
var latencyHint = audioContextOptions.latencyHint;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/latencyHint
Property. The `web.audio.AudioContextOptions` dictionary (used when instantiating `web.audio.AudioContext`) may contain a property named latencyHint, indicates the preferred maximum latency in seconds for the audio `audioContextOptions.latencyHint = \"interactive\"; audioContextOptions.latencyHint = 0.2; var latencyHint = audioContextOptions.latencyHint;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/latencyHint`
(set-sample-rate! this val)
Property.
The web.audio.AudioContextOptions
dictionary (used when instantiating
web.audio.AudioContext
) may contain a property named sampleRate,
indicates the sample rate to use for the new context.
`audioContextOptions.sampleRate = 44100;
var sampleRate = audioContextOptions.sampleRate;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/sampleRate
Property. The `web.audio.AudioContextOptions` dictionary (used when instantiating `web.audio.AudioContext`) may contain a property named sampleRate, indicates the sample rate to use for the new context. `audioContextOptions.sampleRate = 44100; var sampleRate = audioContextOptions.sampleRate;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/sampleRate`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close