admin管理员组文章数量:1345326
I have in my html an audio tag, in which I have src="". When I play music, I change the src value from javascript. However, when loading a page, I get an error
Invalid URI. Load of media resource failed. game.php All candidate resources failed to load. Media load paused.
I know why, the source logically does not exist. Is there any way to tell the audio element not to try to load the src from the beginning?
<div style="display: none;" >
<audio tabindex="0" id="audio" controls preload="auto" loop="true">
<source src="">
</audio>
</div>
Thanks
I have in my html an audio tag, in which I have src="". When I play music, I change the src value from javascript. However, when loading a page, I get an error
Invalid URI. Load of media resource failed. game.php All candidate resources failed to load. Media load paused.
I know why, the source logically does not exist. Is there any way to tell the audio element not to try to load the src from the beginning?
<div style="display: none;" >
<audio tabindex="0" id="audio" controls preload="auto" loop="true">
<source src="">
</audio>
</div>
Thanks
Share Improve this question edited Jan 26, 2018 at 13:28 Pv-Viana 6428 silver badges26 bronze badges asked Jan 26, 2018 at 11:44 Jan GlaserJan Glaser 4223 silver badges18 bronze badges2 Answers
Reset to default 8Simply create your <audio>
element without any <source>
s, like
<audio tabindex="0" id="audio" controls preload="auto" loop="true">
</audio>
Then add a <source>
during runtime, whenever needed/checked/validated, with something like e.g.:
var audio = document.getElementsByTagName('audio')[0];
var source = document.createElement('source');console.log(source);
source.setAttribute('src','http://somewhere');
audio.appendChild(source);
Remove <source>
from initial html and then...
var a = new Audio('someaudio.mp3');
// File does not exist
a.onerror = function() {
//nothing
};
//File exists
a.onloadeddata = function() {
//add source from javascript
};
本文标签: javascriptSuppress Load of media resource failedStack Overflow
版权声明:本文标题:javascript - Suppress Load of media resource failed - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795603a2540370.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论