By timeout, I'm not sure what you mean in this context. Could you elaborate? What's your deliver method? If you're looking to do anything more than say playback and basic stuff than HTML5 Audio isn't your friend and I'd suggest looking into the [Web Audio API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API) instead.
– Chris W.Mar 20 '19 at 21:32
Hi @ChrisW. I was thinking about some rare cases such as when audio couldn't load after 100 seconds, what will happens? Are there any default timeout?
– manMar 20 '19 at 21:50
@man You can set your audio to preload OR you can you can use error handling to check the [network state](https://www.w3schools.com/tags/av_prop_networkstate.asp) or see if there's a [problem](https://www.w3schools.com/tags/av_prop_error.asp) with the media
– Rachel GallenMar 20 '19 at 21:57