我测试了最新的SoundJS 0.6.1项目,以及soundjs-NEXT库,得到了相同的结果。
桌面上一切正常,我在Android Chrome上遇到此问题,在这些设备上进行了测试:Sony Xperia T,华硕fonepad 7。
实际上我使用所谓的Audio Sprites,这里是代码
//init
createjs.Sound.initializeDefaultPlugins();
var assetsPath = "./audio/";
var manifest = [{src:"someAudio.mp3", data: {audioSprite: [{id:"sound1"}]}}];
createjs.Sound.alternateExtensions = ["ogg"];
createjs.Sound.addEventListener("fileload", loadSound);
createjs.Sound.registerSounds(manifest, assetsPath);
function loadSound()
{
//
}
//plays without problem, until HTML5 audio tag is used
someItem.addEventListener("mousedown",playSprite,this);
function playSprite()
{
createjs.Sound.play("sound1", {startTime: 1000, duration: 3400});
}
但是在使用它之后(音频标签已存在于画布存在的同一页面中):
<!--HTML -->
<audio width="100%" height="30%" id="audio">
<source src="" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
//jQuery
$("#audio")[0].src="music.mp3";
$("#audio")[0].load();
$("#someButton").click(function(e)
{
$("#audio")[0].play();
});
我无法使用
createjs.Sound.play("sound1", {startTime: 1000, duration: 3400});
它没有错误,只是沉默。
答案 0 :(得分:0)