Audio player shows and disappear in Firefox
I try to use HTML5's audio tag to play a music file on my site. This is my syntax:
<audio controls="controls">
<source type="audio/ogg" src="/portals/0/BelizeNationalAnthem.ogg"></source>
<source type="audio/mp3" src="/portals/0/BelizeNationalAnthem.mp3"></source>
</audio>
The problem I am encountering is that when I refresh my page, I can see the player, but only for a few seconds, then it fade out. I have tried using my Firefox to visit some other sites that use the same HTML5 audio tag, and it works fine. I try to visit my page in Chrome and IE normally. So I don't understand what is causing my Firefox to fade out the music player.
글쓴이 snstar2006 수정일시
선택된 해결법
this is because the ogg-vorbis encoded file is not present on the server at the specified location
문맥에 따라 이 답변을 읽어주세요 👍 1모든 댓글 (2)
선택된 해결법
this is because the ogg-vorbis encoded file is not present on the server at the specified location
Well, the file does exist on the server, but the server returns "File Not Found" error code because the MIME type for OGG files is not configured. Thanks