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
2 Answers
Reset to default 7Put 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?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743701079a4492581.html
评论列表(0条)