我想问一下preloadJS和soundJS库是否支持使用webM和webA视频/音频文件,因为我在使用它时遇到了麻烦。
我的代码示例:
//Plugin setup and preload files
createjs.Sound.alternateExtensions = ["weba"];
queue.installPlugin(createjs.Sound);
queue.addEventListener("fileload", handleFileLoad);
queue.loadFile({id:"test_mp3", src:"./sounds/mp3.mp3"});
queue.loadFile({id:"test_weba", src:"./sounds/weba.weba"});
queue.loadFile({id:"test_ogg", src:"./sounds/ogg.ogg"});
//file loading handler for audio files creates an array of sound objects
function handleFileLoad(event)
{
if((event.item.ext=="mp3") || (event.item.ext=="weba") || (event.item.ext == "ogg") )
soundList[event.item.id] = createjs.Sound.createInstance(event.item.id);
}
//Trying to play audio
soundList[test_mp3].play(); //works fine
soundList[test_ogg].play(); //works fine
soundList[test_weba].play(); //not working, no errors just no sound
//Trying without preloaded files fails too
createjs.Sound.registerSound("./sounds/weba.weba", "testtt"); //returns false
上面的示例将创建2个WebAudioSoundInstance对象(用于mp3和ogg文件)和1个AbstractSoundInstance(用于weba文件)。 似乎weba不被识别为音频文件,或者由于其他原因而无法创建soundJS对象。
使用像这样的简单html5音频标签可以正常工作
<audio preload="auto" controls autoplay>
<source src="./sounds/weba.weba">
<audio>
我正在使用版本0.6.1 for soundJS和preloadJS以及最新的google chrome版本。
提前致谢。