Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

AudioDestinationNode.maxChannelCount

AudioDestinationNodeインターフェースのmaxchannelCountプロパティは、unsigned longで表された物理的なデバイスが扱えるチャンネルの最大数です。

AudioNode.channelCountプロパティは0からこの値の間(両端を含む)です。もしOfflineAudioContextのようにmaxChannelCountが0ならば、チャンネルの数は変えられません。

構文

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

unsigned long

次の例は単純な設定です。AudioDestinationNodemaxChannelCountを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-maticViolent Thereminのようなサンプルを参考にしてください。

使用

Specification Status Comment
Web Audio API
The definition of 'maxChannelCount' in that specification.
草案  

ブラウザ互換性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 10.0webkit 25.0 (25.0)  未サポート 15.0webkit
22 (unprefixed)
6.0webkit
Feature Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support ? 26.0 1.2 ? ? ? 33.0

参考

ドキュメントのタグと貢献者

 このページの貢献者: maruhiro
 最終更新者: maruhiro,