Web Audio 中 AudioWorkerNode 的状态 API

Status of AudioWorkerNode in Web Audio API

根据 docs,AudioWorker 节点应该可以正常工作。当我尝试创建它时,控制台返回:

TypeError: context.createAudioWorker is not a function.

我的代码:

var context;
if (typeof AudioContext !== 'undefined') {
  context = new AudioContext();
} 
else if (typeof webkitAudioContext !== 'undefined') {
  context = new webkitAudioContext();
} 
else {
  throw new Error('AudioContext not supported. :(');
}

var foo = context.createAudioWorker();

我是不是做错了,还是FF/Chrome没有实现?

尚未在 Chrome 中实施。已经在计划中了,但是还没有开始实施。