in chrome P C Я могу записывать высокие частоты, но в мобильном приложении chrome или любом другом мобильном приложении для браузера высокие частоты отключаются. Есть идеи?
Я попытался создать фильтр высоких частот с createBiquadFilter
, не сработало.
Я использую аудио-контекст.
const filterNode = this.context.createBiquadFilter();
const source = this.context.createMediaStreamSource(this.stream);
const processor = this.context.createScriptProcessor(4096, 1, 1);
source.connect(processor);
// filterNode.connect(processor);
// processor.connect(filterNode)
// source.connect(processor);
// processor.connect(this.context.destination);
processor.connect(this.context.destination);
// filterNode.type="highpass";
// filterNode.frequency.value = 17000;
// filterNode.gain.value=25;
let int32 = new Int32Array(4096);
processor.onaudioprocess = async function(e) {}