我目前正在努力让Opus数据包与Web Audio API一起使用。然而问题是,虽然它应该由FireFox和Chrome本机支持,但只有FireFox可以使用来自Web Audio API的decodeAudioData解码OPUS样本流。当我将opus文件拖到浏览器中时,Chrome会识别该文件,并且它也会播放它!所以我想知道我可能在这里做错了导致Chrome失败。
然后我使用了http://awm.jp/~yoya/js/audio/meow.html中的一些示例代码,只需加载一个opus文件并尝试对其进行解码。 Firefox确实如此,Chrome也没有。因此,我想知道是否有人可以证实我的发现或告诉我这里我做错了什么。以下是早期链接的修改版本。谢谢!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
<title> decodeAudioData sample </title>
</head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
//$(document).ready(function() {
var catMeowingBuffer = null;
window.AudioContext = window.AudioContext||window.webkitAudioContext;
var context = new AudioContext();
function onError(err) {
console.log("unable to decode");
}
function loadCatSound(url) {
var request = new XMLHttpRequest();
request.open('GET', url, true);
request.responseType = 'arraybuffer';
// Decode asynchronously
request.onload = function() {
context.decodeAudioData(request.response, function(buffer) {
catMeowingBuffer = buffer;
var src = context.createBufferSource();
src.buffer = catMeowingBuffer
src.connect(context.destination);
src.start(0);
}, onError);
}
request.send();
}
loadCatSound("opus.opus");
function playCatSound() {
if (catMeowingBuffer !== null) {
var src = context.createBufferSource();
src.buffer = catMeowingBuffer
src.connect(context.destination);
src.start(0);
}
}
//});
</script>
<body>
<h1> decodeAudioData sample </h1>
<button onclick="playCatSound();"> playCatSound </button>
<hr>
<address></address>
</body> </html>