From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../zh-cn/web/api/audiodestinationnode/index.html | 141 +++++++++++++++++++++ .../maxchannelcount/index.html | 113 +++++++++++++++++ 2 files changed, 254 insertions(+) create mode 100644 files/zh-cn/web/api/audiodestinationnode/index.html create mode 100644 files/zh-cn/web/api/audiodestinationnode/maxchannelcount/index.html (limited to 'files/zh-cn/web/api/audiodestinationnode') diff --git a/files/zh-cn/web/api/audiodestinationnode/index.html b/files/zh-cn/web/api/audiodestinationnode/index.html new file mode 100644 index 0000000000..3faf507be0 --- /dev/null +++ b/files/zh-cn/web/api/audiodestinationnode/index.html @@ -0,0 +1,141 @@ +--- +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 inputs1
Number of outputs0
Channel count mode"explicit"
Channel count2
Channel interpretation"speakers"
+ +

属性

+ +

从{{domxref("AudioNode")}}继承的属性.

+ +
+
{{domxref("AudioDestinationNode.maxChannelCount")}}
+
以无符长整型返回物理设备可以处理的最大通道数量。
+
+ +

方法

+ +

继承{{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.

+ +

标准

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#the-audiodestinationnode-interface', 'AudioDestinationNode')}}{{Spec2('Web Audio API')}} 
+ +

浏览器支持

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}23{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}251.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
+
+ +

其他

+ + diff --git a/files/zh-cn/web/api/audiodestinationnode/maxchannelcount/index.html b/files/zh-cn/web/api/audiodestinationnode/maxchannelcount/index.html new file mode 100644 index 0000000000..3e3a9ec874 --- /dev/null +++ b/files/zh-cn/web/api/audiodestinationnode/maxchannelcount/index.html @@ -0,0 +1,113 @@ +--- +title: AudioDestinationNode.maxChannelCount +slug: Web/API/AudioDestinationNode/maxChannelCount +translation_of: Web/API/AudioDestinationNode/maxChannelCount +--- +

{{ APIRef("Web Audio API") }}

+ +
+

{{ domxref("AudioDestinationNode") }} 接口的maxchannelCount属性是一个表示物理设备能处理最大通道数的无符号长整型数。

+ +

 {{domxref("AudioNode.channelCount")}} 属性值只能在 0和这个值 (两端包含)之间。如果 maxChannelCount0,例如在 {{domxref("OfflineAudioContext")}}, 表示音频通道不能被改变。

+
+ +

语法

+ +
var audioCtx = new AudioContext();
+var myDestination = audioCtx.destination;
+myDestination.maxChannelCount = 2;
+
+ +

+ +

一个无符号长整型数

+ +

例子

+ +

下面假设了一个简单的音频环境,设置其中 AudioDestinationNode的maxChannelCount值为 2:

+ +
var audioCtx = new AudioContext();
+var source = audioCtx.createMediaElementSource(myMediaElement);
+source.connect(gainNode);
+audioCtx.destination.maxChannelCount = 2;
+gainNode.connect(audioCtx.destination);
+ +

为看到一个更完整的实施,请访问我们的 MDN Web Audio 例子,如 Voice-change-o-matic 或者 Violent Theremin.

+ +

规范

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioDestinationNode-maxChannelCount', 'maxChannelCount')}}{{Spec2('Web Audio API')}} 
+ +

浏览器兼容

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support{{CompatChrome(10.0)}}{{property_prefix("webkit")}}{{CompatGeckoDesktop(25.0)}} {{CompatNo}}15.0{{property_prefix("webkit")}}
+ 22 (unprefixed)
6.0{{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)Firefox OSIE MobileOpera MobileSafari MobileChrome for Android
Basic support{{CompatUnknown}}26.01.2{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}33.0
+
+ +

其他

+ + -- cgit v1.2.3-54-g00ecf