--- title: AudioDestinationNode slug: Web/API/AudioDestinationNode translation_of: Web/API/AudioDestinationNode ---
{{APIRef("Web Audio API")}}
AudioDestinationNode
接口表示音频图形在特定情况下的最终输出地址 - 通常为扬声器。当使用OfflineAudioContext
时为音频记录节点。
AudioDestinationNode没有输出(因为它就是输出,它存在于视频图标中后AudioNode不能被链接),有一个输入。输入信道的数量必须是0至maxChannelCount之间的值或是一个异常。
AudioDestinationNode可以通过
{{domxref("AudioContext.destination")}}属性来查看。
Number of inputs | 1 |
---|---|
Number of outputs | 0 |
Channel count mode | "explicit" |
Channel count | 2 |
Channel interpretation | "speakers" |
从{{domxref("AudioNode")}}继承的属性.
继承{{domxref("AudioNode")}}的方法。
AudioDestinationNode 不需要使用复杂的设置
— 在默认情况下只是简单的代表使用者系统的输出 (例如他们的扬声器),这样你就可以使用几行代码来与内置音频图标挂钩:
var audioCtx = new AudioContext(); var source = audioCtx.createMediaElementSource(myMediaElement); source.connect(gainNode); gainNode.connect(audioCtx.destination);
更多的例子,请查看MDN Web Audio示例,例如Voice-change-o-matic 或者 Violent Theremin.
Specification | Status | Comment |
---|---|---|
{{SpecName('Web Audio API', '#the-audiodestinationnode-interface', 'AudioDestinationNode')}} | {{Spec2('Web Audio API')}} |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 14 {{property_prefix("webkit")}} | 23 | {{CompatNo}} | 15 {{property_prefix("webkit")}} 22 (unprefixed) |
6 {{property_prefix("webkit")}} |
Feature | Android | Chrome | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | {{CompatNo}} | 28 {{property_prefix("webkit")}} | 25 | 1.2 | {{CompatNo}} | {{CompatNo}} | 6 {{property_prefix("webkit")}} |