aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/waveshapernode/oversample/index.html
blob: a4ffadd60355a69c04379445174556fe97d79fd6 (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
---
title: WaveShaperNode.oversample
slug: Web/API/WaveShaperNode/oversample
translation_of: Web/API/WaveShaperNode/oversample
---
<p>{{ APIRef("Web Audio API") }}</p>

<p>{{ domxref("WaveShaperNode") }} 接口的 <code>oversample</code> 属性是一个指示过采样是否必须使用的枚举值。 过采样是一个用于在将畸变应用到音频信号之前创建更多的采样(上采样)的技术。</p>

<p>一旦被应用, 采样的数值会被还原为初始的数值。 这将通过避免一些混淆现象从而导致更好的结果, 代价则是在畸变曲线上会有较低的精确度。</p>

<p> 可用的<code>oversample</code> 值有:</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Value</th>
   <th scope="col">Effect</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td><code>'none'</code></td>
   <td>不使用过采样。</td>
  </tr>
  <tr>
   <td><code>'2x'</code></td>
   <td>在应用畸变曲线前将采样的数量翻倍。</td>
  </tr>
  <tr>
   <td><code>'4x'</code></td>
   <td>在应用畸变曲线前将采样的数量翻4倍。</td>
  </tr>
 </tbody>
</table>

<h2 id="语法">语法</h2>

<pre class="brush: js"><em>distortion</em>.oversample = <em>enumeratedValue</em>;
</pre>

<h3 id="值"></h3>

<ul>
 <li>畸变是一个{{domxref("WaveShaperNode")}}.</li>
 <li>枚举值<code>'none'</code><code>'2x'</code>, 或 <code>'4x'</code></li>
</ul>

<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', '#widl-WaveShaperNode-oversample', 'oversample')}}</td>
   <td>{{Spec2('Web Audio API')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<div>


<p>{{Compat("api.WaveShaperNode.oversample")}}</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>