AudioContextOptions - Web APIs 编辑
The AudioContextOptions
dictionary is used to specify configuration options when constructing a new AudioContext
object to represent a graph of web audio nodes. It is only used when calling the AudioContext()
constructor.
Properties
latencyHint
Optional- The type of playback that the context will be used for, as a value from the
AudioContextLatencyCategory
enum or a double-precision floating-point value indicating the preferred maximum latency of the context in seconds. The user agent may or may not choose to meet this request; check the value ofAudioContext.baseLatency
to determine the true latency after creating the context. sampleRate
Optional- The
sampleRate
to be used by theAudioContext
, specified in samples per second. The value may be any value supported byAudioBuffer
. If not specified, the preferred sample rate for the context's output device is used by default.
Constants
Standard values for latencyHint
The latencyHint
property can be number specifying a preferred maximum latency in seconds or a string from the AudioContextLatencyCategory
enumerated string, which selects a standard value for a given type of audio usage:
Value | Description |
---|---|
"balanced" | The user agent should balance audio output latency and power consumption when selecting a latency value. |
"interactive" | The audio is involved in interactive elements, such as responding to user actions or needing to coincide with visual cues such as a video or game action. The user agent should select the lowest possible latency that doesn't cause glitches in the audio. This is likely to require increased power consumption. This is the default value. |
"playback" | The user agent should select a latency that will maximize playback time by minimizing power consumption at the expense of latency. Useful for non-interactive playback, such as playing music. |
Example
This example instantiates an audio context for music playback (optimized for power consumption over latency), with the sample rate 48,000 Hz.
let musicContext = new AudioContext({
latencyHint: "playback",
sampleRate: 48000
});
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'AudioContextOptions' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论