当音频因加载数据不足(速度慢)而挂起时,我可以使用什么事件?

What event can I use when the audio suspended because of insufficient loaded data (slow speeds)?

本文关键字:我可以 挂起 可以使 事件 什么 加载 音频 数据 速度慢      更新时间:2023-09-26

当音频因加载数据不足(速度慢)而挂起时,我可以使用什么事件?

就像:

$audio.on('suspendToLoading',function(){
    alert('loading...');
});

我试着用suspend waiting abort load loading

您可以尝试stalled事件,但是,有时即使加载实际上已经停止,它也不会触发。

用户代理正在尝试获取媒体数据,但数据出乎意料不是即将到来。

来源

还可以查看此答案,以了解当stopped不触发时可能的解决方案。