AudioBuffer: numberOfChannels プロパティ
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2021.
numberOfChannels
は AudioBuffer
インターフェイスのプロパティで、バッファーに格納された PCM データのチャンネルの数を整数で返します。
値
整数です。
例
js
// ステレオ
const channels = 2;
// AudioContext のサンプルレートで2秒間の空のステレオバッファーを生成する
const frameCount = audioCtx.sampleRate * 2.0;
const myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
button.onclick = () => {
// バッファーにホワイトノイズを書き込む;
// 単なる -1.0 から 1.0 の間の乱数の値である
for (let channel = 0; channel < channels; channel++) {
// 実際のデータの配列を得る
const nowBuffering = myArrayBuffer.getChannelData(channel);
for (let i = 0; i < frameCount; i++) {
// Math.random() は [0; 1.0] である
// 音声は [-1.0; 1.0] である必要がある
nowBuffering[i] = Math.random() * 2 - 1;
}
}
console.log(myArrayBuffer.numberOfChannels);
};
仕様書
Specification |
---|
Web Audio API # dom-audiobuffer-numberofchannels |
ブラウザーの互換性
BCD tables only load in the browser