1

我的目标是在按下特定键时播放声音(我说按下键上的字母),但没有 html 音频标签,带有来自 web-Audio API 的 audioBuffers。
此处执行,作为arraySources的一项创建的audioBufferSourceNode在使用.start()函数时不显示任何声音。不知道为什么

更新:已解决 arraySources[count].connect(AudCtx.destination) 丢失..!

var myHeader = new Headers({
    'accept':'audio/mpeg',
    'cache-controle':'private',
});

var myInit = {  method: 'GET',
                headers: myHeader,
                mode: 'cors',
                cache:'default' };

var AudCtx = new AudioContext();
arrayRes=[];
arrayBuffers=[];
arraySources=[];

for (var i=0;i<26;i++){
    fetch('./audio/abc'+(i+1)+'.mp3',myInit).then(function(response){
        arrayRes.push(response);
        console.log(response);
        return response;
    })
    .then(function(response){
        return response.arrayBuffer();
    })
    .then(function(buffer){
        console.log(buffer);
        return AudCtx.decodeAudioData(buffer);
    })
    .then(function(decodedData){
        arrayBuffers.push(decodedData);
        console.log(decodedData);
    })
}

var count = 0; 
window.addEventListener("keydown",function(e){
    var keycode = e.keyCode;
    var posiArray = e.keyCode-65;
    if (keycode>=65 && keycode<=91){
        console.log("keycode = "+keycode+" & posiArray = "+posiArray);
        console.log("count = "+count);
        arraySources[count] = AudCtx.createBufferSource();
        arraySources[count].buffer = arrayBuffers[posiArray];
        count++;
    }
})

window.addEventListener("click",function(){
    arraySources[count-1].start(0);
})
<!DOCTYPE html>
<html>
    <head>
        <title>web audio test</title>
        <meta charset="UTF-8">
    </head>
    <body>

        <script src="script.js"></script>
    </body>
</html>

4

1 回答 1

0

请看一下这个答案,它应该可以实现您想要实现的目标:

如何在移动设备上按下 Web Audio 元素时立即发出声音?

于 2020-06-16T16:44:26.560 回答