10

我正在制作一个游戏,其中经常播放声音。我注意到声音在播放时不会再次播放。例如,玩家与墙壁发生碰撞,播放“砰”的一声。但是,如果玩家撞到一面墙,然后又快速撞到另一面墙,只会播放“砰”的一声,我相信这是因为第一个声音没有完成。真的吗?我应该如何避免这种情况?我想过预加载声音三遍,总是播放那个声音的不同副本,但这似乎很愚蠢......

解决了:

事实证明我是对的......您需要预加载多个版本的声音,然后循环播放它们。

编码:

var ns = 3; //The number of sounds to preload. This depends on how often the sounds need to be played, but if too big it will probably cause lond loading times.
var sounds = []; //This will be a matrix of all the sounds

for (i = 0; i < ns; i ++) //We need to have ns different copies of each sound, hence:
    sounds.push([]);

for (i = 0; i < soundSources.length; i ++)
    for (j = 0; j < ns; j ++)
        sounds[j].push(new Audio(sources[i])); //Assuming that you hold your sound sauces in a "sources" array, for example ["bla.wav", "smile.dog" "scream.wav"] 

var playing = []; //This will be our play index, so we know which version has been played the last.

for (i = 0; i < soundSources.length; i ++)
    playing[i] = 0; 

playSound = function(id, vol) //id in the sounds[i] array., vol is a real number in the [0, 1] interval
{
    if (vol <= 1 && vol >= 0)
        sounds[playing[id]][id].volume = vol;
    else
        sounds[playing[id]][id].volume = 1;

    sounds[playing[id]][id].play();
    ++ playing[id]; //Each time a sound is played, increment this so the next time that sound needs to be played, we play a different version of it,

    if (playing[id] >= ns)
        playing[id] = 0;
}
4

4 回答 4

6

您可以克隆音频元素。我不知道您是否可以同时播放多个声音,但这里是您可以多次播放声音而无需多次下载的方法。

var sound = document.getElementById("incomingMessageSound")
var sound2 = sound.cloneNode()
sound.play()
sound2.play()

我知道这适用于 chrome,这是我唯一需要它的地方。祝你好运!

于 2014-07-16T01:02:53.760 回答
2

多次加载声音以模拟复音。以循环方式播放它们。在matthewtoledo.com上查看我的演示。具体来说,函数 _initSoundBank()

于 2012-04-30T14:58:34.713 回答
1

是的,一个<audio>对象一次只能播放一首曲目。考虑该<audio>对象有一个currentTime属性表示音轨的当前位置:如果一个<audio>对象可以同时播放多个音轨,那么会currentTime反映什么值?

请参阅我的解决方案以了解此问题的超集是否在 Javascript 性能中播放声音重?. (基本上,添加<audio>具有相同声音的重复标签。)

于 2012-04-30T15:12:35.037 回答
1

虽然它现在只在 FireFox 和 Chrome 中实现,但将来您应该使用WebAudio API,它是专为浏览器中的游戏和音频应用程序设计的。

在那里,您可以多次播放任何声音并用它做一些其他有趣的事情。

一个很好的教程在这里:http ://www.html5rocks.com/en/tutorials/webaudio/games/

于 2013-10-17T10:46:38.680 回答