Open
Description
as the follow:
var src = 'http://dict.youdao.com/dictvoice?audio=testword';
createjs.Sound.alternateExtensions = ["mp3"]; // add other extensions to try loading if the src file extension is not supported
//createjs.Sound.onLoadComplete = playSound; // add a callback for when load is completed
createjs.Sound.addEventListener("fileload", function() {createjs.Sound.play('demo')}); // add an event listener for when load is completed
createjs.Sound.registerSound(src, 'demo'); // register sound, which preloads by default```
This will raise the error that 'Type not recognized'.