我想记录从麦克风获得的音频数据:

        window.AudioContext = window.AudioContext || window.webkitAudioContext;
        var context = new AudioContext();
        var analyser = context.createAnalyser();

        navigator.webkitGetUserMedia({ audio: true }, function (stream) {
            var source = context.createMediaStreamSource(stream);
            source.connect(analyser);
            analyser.connect(context.destination);

            setInterval(function () {
                var array = new Uint8Array(analyser.frequencyBinCount);
                analyser.getByteFrequencyData(array);
                console.log(array);
            }, 1000);
        }, function () { });

我在用麦克风讲话,但每次记录的数组仅包含0个值。你能告诉我我在做什么错吗?谢谢

最佳答案

尝试在 Chrome 金丝雀,它的作品!浏览器问题,希望他们尽快解决

08-18 23:31