最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ReferenceError: AudioContext not defined - Stack Overflow

programmeradmin3浏览0评论

I'm trying to use the RecorderJS library () which requires me to have an AudioContext. However, when declaring the AudioContext at the very beginning of my script, I am getting an error in the console on page load that says "ReferenceError: AudioContext not defined." As anyone else ever encountered issues with the AudioContext like this? I've posted both a snippet of my JS, and the HTML where everything is being included. Thanks in advance!

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=".js"></script>
        <script src=".10.1.min.js"></script>
        <script src=".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>

I'm trying to use the RecorderJS library (https://github./mattdiamond/Recorderjs) which requires me to have an AudioContext. However, when declaring the AudioContext at the very beginning of my script, I am getting an error in the console on page load that says "ReferenceError: AudioContext not defined." As anyone else ever encountered issues with the AudioContext like this? I've posted both a snippet of my JS, and the HTML where everything is being included. Thanks in advance!

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./jquery-1.10.1.min.js"></script>
        <script src="http://code.jquery./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>
Share Improve this question asked Sep 7, 2013 at 14:50 Frank CangialosiFrank Cangialosi 4331 gold badge4 silver badges12 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Put this at the very beginning of your script (it's also in main.js in Matt Diamond's example):

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

This loads the correct AudioContext independent of your browser.

Your code ran fine for me in Chrome29, does your browser support the Web Audio API? (http://caniuse./audio-api)

I was getting a "ReferenceError: AudioContext not defined" error using AudioContext() instead of webkitAudioContext() before using the AudioContext Monkey Patch like you have. Sure its loaded and not a caching/hard-refresh issue?

发布评论

评论列表(0)

  1. 暂无评论