aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/channelmergernode/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/channelmergernode/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/channelmergernode/index.html')
-rw-r--r--files/ja/web/api/channelmergernode/index.html89
1 files changed, 89 insertions, 0 deletions
diff --git a/files/ja/web/api/channelmergernode/index.html b/files/ja/web/api/channelmergernode/index.html
new file mode 100644
index 0000000000..784fde0bc0
--- /dev/null
+++ b/files/ja/web/api/channelmergernode/index.html
@@ -0,0 +1,89 @@
+---
+title: ChannelMergerNode
+slug: Web/API/ChannelMergerNode
+translation_of: Web/API/ChannelMergerNode
+---
+<p>{{APIRef("Web Audio API")}}</p>
+
+<p><code>ChannelMergerNode</code>インタフェースは、反対の機能の{{domxref("ChannelSplitterNode")}}と組み合わせて使用されることが多く、さまざまなモノラル入力を単一の出力に再結合します。 各入力は、出力のチャンネルを埋めるために使用されます。 これは各チャンネルに別々にアクセスするのに便利です、つまり 各チャンネルでゲインを別々に制御する必要がある場合にミキシングするのに有効です。</p>
+
+<p><img alt="" src="https://mdn.mozillademos.org/files/9709/WebAudioMerger.png" style="display: block; height: 216px; margin: 0px auto; width: 286px;"></p>
+
+<p>もし<code>ChannelMergerNode</code>に単一の出力があるが、マージするチャンネルと同じ数の入力がある場合、入力数はそのコンストラクタのパラメータおよび{{domxref("AudioContext.createChannelMerger")}}の呼び出しとして定義されます。 値が指定されていない場合は、デフォルトの6になります。</p>
+
+<p><code>ChannelMergerNode</code>を使用すると、レンダリングハードウェアが処理できるよりも多くのチャンネルで出力を作成することが可能です。 その場合、シグナルが{{domxref("AudioContext.listener")}} オブジェクトに送信されると、余分なチャンネルは無視されます。</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">入力数</th>
+ <td>variable; default to <code>6</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="Constructor">Constructor</h2>
+
+<dl>
+ <dt>{{domxref("ChannelMergerNode.ChannelMergerNode()", "ChannelMergerNode()")}}</dt>
+ <dd>新しい<code>ChannelMergerNode</code>オブジェクトインスタンスを作成します。</dd>
+</dl>
+
+<h2 id="Properties">Properties</h2>
+
+<p>特定のプロパティはありません。 親である<em>{{domxref("AudioNode")}}</em>からプロパティを継承しています。</p>
+
+<h2 id="Methods">Methods</h2>
+
+<p>特定のメソッドはありません。 親である<em>{{domxref("AudioNode")}}</em>からメソッドを継承しています。</p>
+
+<h2 id="Example">Example</h2>
+
+<p>{{page("/en-US/docs/Web/API/AudioContext.createChannelMerger","Example")}}</p>
+
+<h2 id="Specifications">Specifications</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-channelmergernode-interface', 'ChannelMergerNode')}}</td>
+ <td>{{Spec2('Web Audio API')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">Browser compatibility</h2>
+
+<div>
+
+
+<p>{{Compat("api.ChannelMergerNode")}}</p>
+</div>
+
+<h2 id="See_also">See also</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web_Audio_API/Using_Web_Audio_API">Using the Web Audio API</a></li>
+</ul>