5

我正在尝试使用 RecorderJS 库(https://github.com/mattdiamond/Recorderjs),它需要我有一个 AudioContext。但是,当在脚本的最开始声明 AudioContext 时,页面加载时控制台中出现错误,显示“ReferenceError:AudioContext 未定义”。像其他人一样遇到过这样的 AudioContext 问题吗?我已经发布了我的 JS 片段和包含所有内容的 HTML。提前致谢!

JS:

var audioContext = new AudioContext();
var audioInput = null, inputPoint = null, audioRecorder = null;

$(document).ready(function(){
    // recording stuff
});

HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>Recording</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script src="http://cwilso.github.io/AudioContext-MonkeyPatch/AudioContextMonkeyPatch.js"></script>
        <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
        <script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
        <script src="recorder.js"></script>
        <script src="script.js"></script>
    </head>
    <body>
        <button class="record" type='button'>Record</button>
    </body>
</html>
4

2 回答 2

4

把它放在你脚本的最开始(它也在main.jsMatt Diamond 的例子中):

window.AudioContext = window.AudioContext || window.webkitAudioContext;

这会独立于您的浏览器加载正确的 AudioContext。

于 2019-01-15T11:10:35.793 回答
0

您的代码在 Chrome29 中运行良好,您的浏览器是否支持 Web Audio API?( http://caniuse.com/audio-api )

我得到一个“ReferenceError:AudioContext not defined”错误,AudioContext()而不是webkitAudioContext()像你一样使用AudioContext Monkey Patch。确定它已加载而不是缓存/硬刷新问题?

于 2013-09-14T06:15:31.730 回答