のこのコールバックで RecorderJS を使用しようとしていますgetUserMedia
。1 か月前はこのコードは機能していましたが、今はこれに問題があります。onaudioprocess
inが実行されるとrecorder.js
、配列バッファーには 0 のみが含まれます。
このコード コールバックを使用Recorder
オブジェクトに使用します。
function gotStream(stream) {
inputPoint = audioContext.createGain();
// Create an AudioNode from the stream.
realAudioInput = audioContext.createMediaStreamSource(stream);
audioInput = realAudioInput;
audioInput.connect(inputPoint);
recorder = new Recorder(inputPoint);
}
Chromeで何かが変わったと思います。誰か私に何か提案がありますか?