RecorderJS不再起作用了

时间:2013-04-04 15:30:41

标签: google-chrome web-audio recorder.js

我尝试在getUserMedia中使用RecorderJS和此回调。一个月前这段代码有效,但现在我遇到了一些麻烦。执行onaudioprocess中的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已经改变了一些东西。有人给我一些建议吗?

1 个答案:

答案 0 :(得分:0)

它是createGainNode,而不是createGain