AudioContext
インターフェースのsampleRate
プロパティは、このオーディオコンテキストの全てのノードで使われるサンプルレート(1秒あたりのサンプル数)を浮動小数点で返します。
構文
var audioCtx = new AudioContext(); var mySampleRate = audioCtx.sampleRate;
値
浮動小数点
例
注: 完全な実装の例は、MDN Github repoのpanner-nodeなどを参照してください。audioCtx.sampleRate
をあなたのブラウザで使ってみてください。
var AudioContext = window.AudioContext || window.webkitAudioContext; var audioCtx = new AudioContext(); // 古いwebkit/blinkブラウザではプレフィックスが必要です ... console.log(audioCtx.sampleRate);
仕様
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'sampleRate' 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 |