我正在使用MediaElement.js创建一个音频播放器,如下所示:
//button has been clicked, create new audio player and play
var audioElement = $('<audio>', {
id : 'audioPlayer' + index,
src : '/streamFriendFile',
loop : 'loop',
preload : 'none'
})[0];
$(row).append(audioElement);
new MediaElement(audioElement, {
plugins : ['flash', 'silverlight'],
pluginPath : 'http://localhost:3000/mediaelement/',
flashName : 'flashmediaelement.swf',
silverlightName : 'silverlightmediaelement.xap',
pluginWidth : 0,
pluginHeight : 0,
audioWidth: 0,
audioHeight : 0,
startVolume: 0.8,
//loop: true,
//enableAutosize: false,
//features : [],
//timerRate : 250,
success : function(mediaElement, domObj) {
console.log('mediaElement success!');
mediaElement.play();
},
error : function(mediaElement) {
console.log('medialement problem is detected: %o', mediaElement);
}
});
立即调用错误回调,但它只包含media元素作为参数。这并没有告诉我出了什么问题。
如何获取实际的错误消息以便我可以调试此问题?
请注意,我只使用MediaElement核心API,因此不是实际播放器(因此我只包含mediaelement.js)。
答案 0 :(得分:3)
在您的MediaElement选项中(以及flashName,silverlightName等...)添加enablePluginDebug:true
,它应该在屏幕上显示调试错误。来自右侧代码示例中的API reference。
除此之外我不相信他们对该错误对象有任何详细的错误处理,从查看github repo它似乎是一个在底部提到的“待办事项”功能(很可能是2.2特征)。
看起来您可能必须暂时弄清楚自己的错误处理。