3

我目前正在尝试使 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>
4

1 回答 1

2

这是 Chrome 中的一个错误。请参阅https://code.google.com/p/chromium/issues/detail?id=409402

于 2014-12-21T05:41:40.083 回答