From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/api/audiobuffer/copyfromchannel/index.html | 95 ++++++++++++ .../web/api/audiobuffer/copytochannel/index.html | 134 ++++++++++++++++ files/ja/web/api/audiobuffer/duration/index.html | 123 +++++++++++++++ .../web/api/audiobuffer/getchanneldata/index.html | 146 +++++++++++++++++ files/ja/web/api/audiobuffer/index.html | 172 +++++++++++++++++++++ files/ja/web/api/audiobuffer/length/index.html | 122 +++++++++++++++ .../api/audiobuffer/numberofchannels/index.html | 122 +++++++++++++++ files/ja/web/api/audiobuffer/samplerate/index.html | 122 +++++++++++++++ 8 files changed, 1036 insertions(+) create mode 100644 files/ja/web/api/audiobuffer/copyfromchannel/index.html create mode 100644 files/ja/web/api/audiobuffer/copytochannel/index.html create mode 100644 files/ja/web/api/audiobuffer/duration/index.html create mode 100644 files/ja/web/api/audiobuffer/getchanneldata/index.html create mode 100644 files/ja/web/api/audiobuffer/index.html create mode 100644 files/ja/web/api/audiobuffer/length/index.html create mode 100644 files/ja/web/api/audiobuffer/numberofchannels/index.html create mode 100644 files/ja/web/api/audiobuffer/samplerate/index.html (limited to 'files/ja/web/api/audiobuffer') diff --git a/files/ja/web/api/audiobuffer/copyfromchannel/index.html b/files/ja/web/api/audiobuffer/copyfromchannel/index.html new file mode 100644 index 0000000000..7ee693c428 --- /dev/null +++ b/files/ja/web/api/audiobuffer/copyfromchannel/index.html @@ -0,0 +1,95 @@ +--- +title: AudioBuffer.copyFromChannel() +slug: Web/API/AudioBuffer/copyFromChannel +tags: + - API + - Audio + - AudioBuffer + - Copying + - Frames + - Method + - Reference + - Samples + - Web Audio + - Web Audio API + - copy + - copyFromChannel + - sound +translation_of: Web/API/AudioBuffer/copyFromChannel +--- +
{{APIRef("Web Audio API")}}
+ +

{{domxref("AudioBuffer")}} インターフェイスの copyFromChannel() メソッドは、 AudioBuffer の指定されたチャンネルから音声サンプルデータを指定された {{domxref("Float32Array")}} へコピーします。

+ +

構文

+ +
myArrayBuffer.copyFromChannel(destination, channelNumber, startInChannel);
+ +

引数

+ +
+
destination
+
チャンネルのサンプルのコピー先となる {{domxref("Float32Array")}} です。
+
channelNumber
+
チャンネルデータをコピーする現在の AudioBuffer のチャンネル数です。
+
startInChannel {{optional_inline}}
+
(任意) ソースチャンネルバッファー内でサンプルのコピーを始める位置のオフセットです。指定されていない場合は、既定で0の値 (バッファーの先頭) とみなされます。
+
+ +

返値

+ +

undefined です。

+ +

例外

+ +
+
indexSizeError
+
入力引数のうちの一つが、受付可能な範囲の外にある場合。 +
    +
  • channelNumber の値が存在しないチャンネル番号を指定している場合 (つまり、チャンネルの {{domxref("AudioBuffer.numberOfChannels", "numberOfChannels")}} 以上である場合)。
  • +
  • startInChannel の値がソースバッファーの中に既に存在するサンプルの現在の範囲の外にある場合。つまり、現在の {{domxref("AudioBuffer.length", "length")}} より大きい場合。
  • +
+
+
+ +

+ +

この例では新しい音声バッファーを生成し、他のチャンネルからサンプルをコピーします。

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+var anotherArray = new Float32Array(length);
+myArrayBuffer.copyFromChannel(anotherArray, 1, 0);
+
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様状態備考
{{SpecName('Web Audio API', '#widl-AudioBuffer-copyFromChannel-void-Float32Array-destination-long-channelNumber-unsigned-long-startInChannel', 'copyFromChannel')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザーの対応

+ +
+ + +

{{Compat("api.AudioBuffer.copyFromChannel")}}

+
+ +

関連情報

+ + diff --git a/files/ja/web/api/audiobuffer/copytochannel/index.html b/files/ja/web/api/audiobuffer/copytochannel/index.html new file mode 100644 index 0000000000..e551c8cc8b --- /dev/null +++ b/files/ja/web/api/audiobuffer/copytochannel/index.html @@ -0,0 +1,134 @@ +--- +title: AudioBuffer.copyToChannel() +slug: Web/API/AudioBuffer/copyToChannel +translation_of: Web/API/AudioBuffer/copyToChannel +--- +

{{ APIRef("Web Audio API") }}

+ +
+

{{ domxref("AudioBuffer") }}インターフェースのcopyToChannel()メソッドは、配列から指定のAudioBufferのチャンネルへとコピーします。

+
+ +

構文

+ +
myArrayBuffer.copyToChannel(source, channelNumber, startInChannel);
+ +

引数

+ +
+
source
+
コピー元の{{jsxref("Float32Array")}}
+
channelNumber
+
コピー先のチャンネル番号。もし、channelNumberが{{domxref("AudioBuffer.numberOfChannels")}}以上ならば、INDEX_SIZE_ERR例外が発生する。
+
startInChannel {{optional_inline}}
+
(任意) コピー先のオフセット位置。もし、startInChannelが{{domxref("AudioBuffer.length")}}を超えていれば、INDEX_SIZE_ERR例外が発生する。
+
+ +

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+var anotherArray = new Float32Array;
+// myArrayBufferの2番目のチャンネルからコピーする
+myArrayBuffer.copyFromChannel(anotherArray,1,0);
+// anotherArrayから、myArrayBufferの1番目のチャンネルにコピーする。これで2つのチャンネルのデータは同じになる
+myArrayBuffer.copyToChannel (anotherArray,0,0);
+
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioBuffer-copyToChannel-void-Float32Array-source-long-channelNumber-unsigned-long-startInChannel', 'copyToChannel')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support{{CompatChrome(14.0)}} {{property_prefix("webkit")}}{{CompatGeckoDesktop(27)}}{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
Unprefixed{{CompatChrome(43.0)}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidAndroid WebviewFirefox Mobile (Gecko)Firefox OSIE MobileOpera MobileSafari MobileAndroid for Chrome
Basic support{{CompatNo}}{{CompatUnknown}}{{CompatGeckoDesktop(25)}}1.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}{{CompatChrome(28.0)}} {{property_prefix("webkit")}}
Unprefixed{{CompatNo}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}{{CompatChrome(43.0)}}
+
+ +

参考

+ + diff --git a/files/ja/web/api/audiobuffer/duration/index.html b/files/ja/web/api/audiobuffer/duration/index.html new file mode 100644 index 0000000000..4be93357c9 --- /dev/null +++ b/files/ja/web/api/audiobuffer/duration/index.html @@ -0,0 +1,123 @@ +--- +title: AudioBuffer.duration +slug: Web/API/AudioBuffer/duration +translation_of: Web/API/AudioBuffer/duration +--- +

{{ APIRef("Web Audio API") }}

+ +
+

{{ domxref("AudioBuffer") }}インターフェースのdurationプロパティは、バッファに格納されたPCMデータの再生時間をdoubleで表された秒で返します。

+
+ +

構文

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+myArrayBuffer.duration;
+ +

+ +

double

+ +

+ +
// ステレオ
+var channels = 2;
+
+// AudioContextのサンプルレートで2秒間の空のステレオバッファを生成する
+var frameCount = audioCtx.sampleRate * 2.0;
+var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+
+button.onclick = function() {
+  // バッファにホワイトノイズを書き込む;
+  // 単なる-1.0から1.0の間の乱数の値である
+  for (var channel = 0; channel < channels; channel++) {
+    // 実際のデータの配列を得る
+    var nowBuffering = myArrayBuffer.getChannelData(channel);
+    for (var i = 0; i < frameCount; i++) {
+      // Math.random()は[0; 1.0]である
+      // 音声は[-1.0; 1.0]である必要がある
+      nowBuffering[i] = Math.random() * 2 - 1;
+    }
+  }
+
+  console.log(myArrayBuffer.duration);
+}
+
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioBuffer-duration', 'duration')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}23{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}251.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
+
+ +

参考

+ + diff --git a/files/ja/web/api/audiobuffer/getchanneldata/index.html b/files/ja/web/api/audiobuffer/getchanneldata/index.html new file mode 100644 index 0000000000..4e81aaa476 --- /dev/null +++ b/files/ja/web/api/audiobuffer/getchanneldata/index.html @@ -0,0 +1,146 @@ +--- +title: AudioBuffer.getChannelData() +slug: Web/API/AudioBuffer/getChannelData +translation_of: Web/API/AudioBuffer/getChannelData +--- +

{{ APIRef("Web Audio API") }}

+ +
+

{{ domxref("AudioBuffer") }}インターフェースのgetChannelData()メソッドは、引数channel(0が最初のチャンネル)に結び付けられたPCMデータを{{domxref("Float32Array")}}で返します。

+
+ +

構文

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+var nowBuffering = myArrayBuffer.getChannelData(channel);
+ +

戻り値

+ +

{{domxref("Float32Array")}}

+ +

+ +

次の例は、2秒間のバッファを生成し、ホワイトノイズを書き込み、{{ domxref("AudioBufferSourceNode") }}で再生します。コメントは何をしているかを簡単に説明しています。コードをすぐに実行することや、ソースコードを閲覧することもできます。

+ +
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
+var button = document.querySelector('button');
+var pre = document.querySelector('pre');
+var myScript = document.querySelector('script');
+
+pre.innerHTML = myScript.innerHTML;
+
+// ステレオ
+var channels = 2;
+// AudioContextのサンプルレートで2秒間の空のステレオバッファを生成する
+var frameCount = audioCtx.sampleRate * 2.0;
+
+var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+
+button.onclick = function() {
+  // バッファにホワイトノイズを書き込む;
+  // 単なる-1.0から1.0の間の乱数の値である
+  for (var channel = 0; channel < channels; channel++) {
+   // 実際のデータの配列を得る
+   var nowBuffering = myArrayBuffer.getChannelData(channel);
+   for (var i = 0; i < frameCount; i++) {
+     // Math.random()は[0; 1.0]である
+     // 音声は[-1.0; 1.0]である必要がある
+     nowBuffering[i] = Math.random() * 2 - 1;
+   }
+  }
+
+  // AudioBufferSourceNodeを得る
+  // これはAudioBufferを再生するときに使うAudioNodeである
+  var source = audioCtx.createBufferSource();
+  // AudioBufferSourceNodeにバッファを設定する
+  source.buffer = myArrayBuffer;
+  // AudioBufferSourceNodeを出力先に接続すると音声が聞こえるようになる
+  source.connect(audioCtx.destination);
+  // 音源の再生を始める
+  source.start();
+}
+ +

引数

+ +
+
channel
+
channelプロパティはデータを得るチャンネルの番号である。0が最初のチャンネルを表す。channelが{{domxref("AudioBuffer.numberOfChannels")}}以上ならば、INDEX_SIZE_ERR例外が発生する。
+
+ +

使用

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioBuffer-getChannelData-Float32Array-unsigned-long-channel', 'getChannelData')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}23{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}251.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
+
+ +

参考

+ + diff --git a/files/ja/web/api/audiobuffer/index.html b/files/ja/web/api/audiobuffer/index.html new file mode 100644 index 0000000000..6ed8c1c24d --- /dev/null +++ b/files/ja/web/api/audiobuffer/index.html @@ -0,0 +1,172 @@ +--- +title: AudioBuffer +slug: Web/API/AudioBuffer +translation_of: Web/API/AudioBuffer +--- +

{{APIRef("Web Audio API")}}

+ +
+

AudioBufferインターフェースはメモリ上の短い音声を表すもので、それは{{ domxref("AudioContext.decodeAudioData()") }}メソッドを使ってオーディオファイルから、または{{ domxref("AudioContext.createBuffer()") }}を使って生のデータから生成されます。AudioBufferに入れた後は、その音声は{{ domxref("AudioBufferSourceNode") }}に渡せば再生できます。

+
+ +

これらのオブジェクトは短い、一般的には45秒未満の、断片的な音声を保持するために設計されています。それよりも長い音声は、{{domxref("MediaElementAudioSourceNode")}}のオブジェクトが適しています。バッファには次の形式でデータが書き込まれます: ノンインターリーブ IEEE754 32bit リニア PCMで、-1から+1の範囲で正規化されています。つまり、32bit 浮動小数点バッファで、それぞれのサンプルは-1.0から1.0の間です。AudioBufferに複数のチャンネルがある場合は、それぞれ分かれたバッファに格納されます。

+ +

プロパティ

+ +
+
{{domxref("AudioBuffer.sampleRate")}} {{readonlyInline}}
+
バッファに格納されたPCMデータの1秒あたりのサンプル数をfloatで返す
+
{{domxref("AudioBuffer.length")}} {{readonlyInline}}
+
バッファに格納されたPCMデータの長さをintegerで返す
+
{{domxref("AudioBuffer.duration")}} {{readonlyInline}}
+
バッファに格納されたPCMデータの時間(秒)をdoubleで返す
+
{{domxref("AudioBuffer.numberOfChannels")}} {{readonlyInline}}
+
バッファに格納されたPCMデータのチャンネルの数をintegerで返す
+
+ +

メソッド

+ +
+
{{domxref("AudioBuffer.getChannelData()")}}
+
引数channel(0が最初のチャンネルを表す)のチャンネルに結び付けられたPCMデータを{{jsxref("Float32Array")}}で返す
+
{{domxref("AudioBuffer.copyFromChannel()")}}
+
サンプルを、AudioBufferの指定のチャンネルから、コピー先の配列へコピーする
+
{{domxref("AudioBuffer.copyToChannel()")}}
+
サンプルを、コピー元の配列から、AudioBufferの指定のチャンネルへコピーする
+
+ +

+ +

次の簡単な例では、AudioBufferの生成し、バッファにランダムなホワイトノイズを書き込む方法を示しています。audio-buffer demo リポジトリには完全なソースコードと、すぐに実行できるバージョンがあります。

+ +
// ステレオ
+var channels = 2;
+
+// AudioContextのサンプルレートで2秒間の空のステレオバッファを生成する
+var frameCount = audioCtx.sampleRate * 2.0;
+var myArrayBuffer = audioCtx.createBuffer(channels, frameCount, audioCtx.sampleRate);
+
+button.onclick = function() {
+  // バッファにホワイトノイズを書き込む;
+  // 単なる-1.0から1.0の間の乱数の値である
+  for (var channel = 0; channel < channels; channel++) {
+    // 実際のデータの配列を得る
+    var nowBuffering = myArrayBuffer.getChannelData(channel);
+    for (var i = 0; i < frameCount; i++) {
+      // Math.random()は[0; 1.0]である
+      // 音声は[-1.0; 1.0]である必要がある
+      nowBuffering[i] = Math.random() * 2 - 1;
+    }
+  }
+
+  // AudioBufferSourceNodeを得る
+  // これはAudioBufferを再生するときに使うAudioNodeである
+  var source = audioCtx.createBufferSource();
+
+  // AudioBufferSourceNodeにバッファを設定する
+  source.buffer = myArrayBuffer;
+
+  // AudioBufferSourceNodeを出力先に接続すると音声が聞こえるようになる
+  source.connect(audioCtx.destination);
+
+  // 音源の再生を始める
+  source.start();
+
+}
+
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#the-audiobuffer-interface', 'AudioBuffer')}}{{Spec2('Web Audio API')}}Initial definition.
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}{{CompatGeckoDesktop(25)}}{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22
6 {{property_prefix("webkit")}}
copyFromChannel()copyToChannel(){{CompatUnknown}}{{CompatGeckoDesktop(27)}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}{{CompatGeckoMobile(25)}}1.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
copyFromChannel()copyToChannel(){{CompatNo}}{{CompatUnknown}}{{CompatGeckoMobile(27)}} {{CompatNo}}{{CompatNo}}{{CompatUnknown}}
+
+ +

参考

+ + diff --git a/files/ja/web/api/audiobuffer/length/index.html b/files/ja/web/api/audiobuffer/length/index.html new file mode 100644 index 0000000000..64135448fd --- /dev/null +++ b/files/ja/web/api/audiobuffer/length/index.html @@ -0,0 +1,122 @@ +--- +title: AudioBuffer.length +slug: Web/API/AudioBuffer/length +translation_of: Web/API/AudioBuffer/length +--- +

{{ APIRef("Web Audio API") }}

+ +
+

{{ domxref("AudioBuffer") }}インターフェースのlengthプロパティは、バッファに格納されたPCMデータのサンプルフレーム数を長さとしてintegerで返します。

+
+ +

構文

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+myArrayBuffer.length;
+ +

+ +

float

+ +

+ +
// ステレオ
+var channels = 2;
+
+// AudioContextのサンプルレートで2秒間の空のステレオバッファを生成する
+var frameCount = audioCtx.sampleRate * 2.0;
+var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+
+button.onclick = function() {
+  // バッファにホワイトノイズを書き込む;
+  // 単なる-1.0から1.0の間の乱数の値である
+  for (var channel = 0; channel < channels; channel++) {
+    // 実際のデータの配列を得る
+    var nowBuffering = myArrayBuffer.getChannelData(channel);
+    for (var i = 0; i < frameCount; i++) {
+      // Math.random()は[0; 1.0]である
+      // 音声は[-1.0; 1.0]である必要がある
+      nowBuffering[i] = Math.random() * 2 - 1;
+    }
+  }
+
+  console.log(myArrayBuffer.length);
+}
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioBuffer-length', 'length')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}23{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}251.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
+
+ +

参考

+ + diff --git a/files/ja/web/api/audiobuffer/numberofchannels/index.html b/files/ja/web/api/audiobuffer/numberofchannels/index.html new file mode 100644 index 0000000000..4c829b3eb2 --- /dev/null +++ b/files/ja/web/api/audiobuffer/numberofchannels/index.html @@ -0,0 +1,122 @@ +--- +title: AudioBuffer.numberOfChannels +slug: Web/API/AudioBuffer/numberOfChannels +translation_of: Web/API/AudioBuffer/numberOfChannels +--- +

{{ APIRef("Web Audio API") }}

+ +
+

インターフェースのnumberOfChannelsプロパティは、バッファに格納されたPCMデータのチャンネルの数をintegerで返します。

+
+ +

構文

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+myArrayBuffer.numberOfChannels;
+ +

+ +

integer

+ +

+ +
// ステレオ
+var channels = 2;
+
+// AudioContextのサンプルレートで2秒間の空のステレオバッファを生成する
+var frameCount = audioCtx.sampleRate * 2.0;
+var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+
+button.onclick = function() {
+  // バッファにホワイトノイズを書き込む;
+  // 単なる-1.0から1.0の間の乱数の値である
+  for (var channel = 0; channel < channels; channel++) {
+    // 実際のデータの配列を得る
+    var nowBuffering = myArrayBuffer.getChannelData(channel);
+    for (var i = 0; i < frameCount; i++) {
+      // Math.random()は[0; 1.0]である
+      // 音声は[-1.0; 1.0]である必要がある
+      nowBuffering[i] = Math.random() * 2 - 1;
+    }
+  }
+
+  console.log(myArrayBuffer.numberOfChannels);
+}
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioBuffer-numberOfChannels', 'numberOfChannels')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}23{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}251.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
+
+ +

参考

+ + diff --git a/files/ja/web/api/audiobuffer/samplerate/index.html b/files/ja/web/api/audiobuffer/samplerate/index.html new file mode 100644 index 0000000000..e391f8a3b7 --- /dev/null +++ b/files/ja/web/api/audiobuffer/samplerate/index.html @@ -0,0 +1,122 @@ +--- +title: AudioBuffer.sampleRate +slug: Web/API/AudioBuffer/sampleRate +translation_of: Web/API/AudioBuffer/sampleRate +--- +

{{ APIRef("Web Audio API") }}

+ +
+

{{ domxref("AudioBuffer") }}インターフェースのsampleRateプロパティは、バッファに格納されたPCMデータの1秒あたりのサンプル数を、サンプルレートとしてfloatで返します。

+
+ +

構文

+ +
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+myArrayBuffer.sampleRate;
+ +

+ +

float

+ +

+ +
// ステレオ
+var channels = 2;
+
+// AudioContextのサンプルレートで2秒間の空のステレオバッファを生成する
+var frameCount = audioCtx.sampleRate * 2.0;
+var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
+
+button.onclick = function() {
+  // バッファにホワイトノイズを書き込む;
+  // 単なる-1.0から1.0の間の乱数の値である
+  for (var channel = 0; channel < channels; channel++) {
+    // 実際のデータの配列を得る
+    var nowBuffering = myArrayBuffer.getChannelData(channel);
+    for (var i = 0; i < frameCount; i++) {
+      // Math.random()は[0; 1.0]である
+      // 音声は[-1.0; 1.0]である必要がある
+      nowBuffering[i] = Math.random() * 2 - 1;
+    }
+  }
+
+  console.log(myArrayBuffer.sampleRate);
+}
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Web Audio API', '#widl-AudioBuffer-sampleRate', 'sampleRate')}}{{Spec2('Web Audio API')}} 
+ +

ブラウザ互換性

+ +
{{CompatibilityTable}}
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support14 {{property_prefix("webkit")}}23{{CompatNo}}15 {{property_prefix("webkit")}}
+ 22 (unprefixed)
6 {{property_prefix("webkit")}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChromeFirefox Mobile (Gecko)Firefox OSIE PhoneOpera MobileSafari Mobile
Basic support{{CompatNo}}28 {{property_prefix("webkit")}}251.2{{CompatNo}}{{CompatNo}}6 {{property_prefix("webkit")}}
+
+ +

参考

+ + -- cgit v1.2.3-54-g00ecf