blob: 3cf690d41f9a106393ed80363b3b92622a701832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
---
title: WaveShaperNode
slug: Web/API/WaveShaperNode
translation_of: Web/API/WaveShaperNode
---
<p>{{ APIRef("Web Audio API") }}</p>
<div>
<p><strong><code>WaveShaperNode</code></strong> 接口表示一个非线性的畸变器。 是一个使用曲线来将一个波形畸变应用到一个声音信号中的{{domxref("AudioNode")}} 。 除了明显的失真效果之外, 它通常用来给信号添加一个暖调的感觉。</p>
</div>
<p> 一个<code>WaveShaperNode</code> 总是有一个确切的输入和输出。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">输入数目</th>
<td><code>1</code></td>
</tr>
<tr>
<th scope="row">输出数目</th>
<td><code>1</code></td>
</tr>
<tr>
<th scope="row">信道计数模式</th>
<td><code>"max"</code></td>
</tr>
<tr>
<th scope="row">信道计数</th>
<td><code>2</code> (不在缺省的计数模式中使用)</td>
</tr>
<tr>
<th scope="row">信道解释</th>
<td><code>"speakers"</code></td>
</tr>
</tbody>
</table>
<h2 id="构造器">构造器</h2>
<dl>
<dt>{{domxref("WaveShaperNode.WaveShaperNode", "WaveShaperNode()")}}</dt>
<dd> 创建一个新的<code>WaveShaperNode</code> 对象的实例。</dd>
</dl>
<h2 id="属性">属性</h2>
<p><em> 包含了继承自父类</em><em>{{domxref("AudioNode")}}的属性</em>。</p>
<dl>
<dt>{{domxref("WaveShaperNode.curve")}}</dt>
<dd>是一个{{domxref("Float32Array")}}描述要应用的失真数值的数组。</dd>
<dt>{{domxref("WaveShaperNode.oversample")}}</dt>
<dd>是一个描述是否必须使用过采样的枚举值。 过采样是一个用来在将失真效果应用到音频信号之前创建更多采样(上采样)的技术。</dd>
</dl>
<h2 id="方法">方法</h2>
<p><em>没有特有的方法; 从父类 </em><em>{{domxref("AudioNode")}}继承了方法</em>。</p>
<h2 id="示例">示例</h2>
<p>{{page("/en-US/docs/Web/API/AudioContext.createWaveShaper","Example")}}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('Web Audio API', '#the-waveshapernode-interface', 'WaveShaperNode')}}</td>
<td>{{Spec2('Web Audio API')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div>
<p>{{Compat("api.WaveShaperNode")}}</p>
</div>
<h2 id="相关链接">相关链接</h2>
<ul>
<li><a href="/en-US/docs/Web_Audio_API/Using_Web_Audio_API">Using the Web Audio API</a></li>
</ul>
|