我在这里厌倦了加载和播放方法:
http://chromium.googlecode.com/svn/trunk/samples/audio/doc/loading-sounds.html并编写我自己的 html 和 js 代码,但在加载音频时遇到问题,我总是得到一个空缓冲区列表和数组缓冲区。我不知道为什么,有人请写一个简单的代码或告诉我如何在数组中加载音频,以便我可以使用 websocket
发送它我不知道如何在这里添加代码,但我的代码与链接中的代码非常相似。
试试这个:
window.onload = init();
function init ()
{
var audioContext = new webkitAudioContext();
var source = audioContext.createBufferSource();
source.connect(audioContext.destination);
var xhr = new XMLHttpRequest();
xhr.open("GET", "sounds/sample.mp3", true);
xhr.responseType = "arraybuffer";
xhr.onload = function() {
var buffer = audioContext.createBuffer(xhr.response, false);
source.buffer = buffer;
source.noteOn(0);
};
xhr.send();
}