简体   繁体   中英

I am getting [object MediaError] while playing audio in html5 audio tag

I am getting [object MediaError] while playing audio in html5 audio tag

I console the audio tag with code as below

myAudio.error.code

It displays 4 in console log.

Any one can assist me why I am getting this error. Even my audio tag is as below.

<audio id="scamper_music_sting_SFX" src="lib/game15/sounds/language/english/scamper_music_sting_SFX.mp3" type="audio/mpeg"/>

path is correct.

There may be some permission issues on the folder structure your audio file is in, you can test by moving the audio file into the same directory as your html file. Then test with the audio element below.

<audio id="scamper_music_sting_SFX" src="scamper_music_sting_SFX.mp3" type="audio/mpeg" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM