AnalyserNode.getByteTimeDomainData() - Web API 接口参考 编辑
AnalyserNode
接口的 getByteTimeDomainData()
方法复制当前波形或时域数据到传递给它的 Uint8Array
(无符号字节数组) 中。
如果该数组的元素少于 AnalyserNode.fftSize
, 多余的元素会被丢弃。如果它有多于所需的元素,则忽略多余的元素。
语法
var audioCtx = new AudioContext();
var analyser = audioCtx.createAnalyser();
var dataArray = new Uint8Array(analyser.fftSize); // Uint8Array should be the same length as the fftSize
analyser.getByteTimeDomainData(dataArray); // fill the Uint8Array with data returned from getByteTimeDomainData()
参数
array
- 时域数据将被复制到的
Uint8Array
。
如果数组中的元素少于AnalyserNode.frequencyBinCount
, 则会删除多余的元素。如果它包含的元素多于需要的元素,则忽略多余的元素。
返回值
void
| None
例子
以下的例子展示了 AudioContext
生成一个 AnalyserNode
基础用法, 然后通过 requestAnimationFrame
和 <canvas>
重复的收集和绘制一个当前音频输入的“示波器样式”输出。 有关更完整的应用实例/信息,请查看我们的 Voice-change-O-matic demo (有关代码请参阅 app.js lines 128–205)。
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
var analyser = audioCtx.createAnalyser();
...
analyser.fftSize = 2048;
var bufferLength = analyser.frequencyBinCount;
var dataArray = new Uint8Array(bufferLength);
analyser.getByteTimeDomainData(dataArray);
// draw an oscilloscope of the current audio source
function draw() {
drawVisual = requestAnimationFrame(draw);
analyser.getByteTimeDomainData(dataArray);
canvasCtx.fillStyle = 'rgb(200, 200, 200)';
canvasCtx.fillRect(0, 0, WIDTH, HEIGHT);
canvasCtx.lineWidth = 2;
canvasCtx.strokeStyle = 'rgb(0, 0, 0)';
var sliceWidth = WIDTH * 1.0 / bufferLength;
var x = 0;
ctx.beginPath();
for(var i = 0; i < bufferLength; i++) {
let v = dataArray[i]/128.0,
y = v * HEIGHT/2;
if(i === 0)
canvasCtx.moveTo(x, y);
else
canvasCtx.lineTo(x, y);
x += sliceWidth;
}
canvasCtx.lineTo(canvas.width, canvas.height/2);
canvasCtx.stroke();
};
draw();
规格
Specification | Status | Comment |
---|---|---|
Web Audio API getByteTimeDomainData() | Working Draft |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论