Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Audio player shows and disappear in Firefox

  • 2 件の返信
  • 25 人がこの問題に困っています
  • 16 回表示
  • 最後の返信者: snstar2006

more options

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.

I try to use HTML5's audio tag to play a music file on my site. This is my syntax: &lt;audio controls="controls"&gt; &lt;source type="audio/ogg" src="/portals/0/BelizeNationalAnthem.ogg"&gt;&lt;/source&gt;<br/> &lt;source type="audio/mp3" src="/portals/0/BelizeNationalAnthem.mp3"&gt;&lt;/source&gt;<br/> &lt;/audio&gt; 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)

more options

選ばれた解決策

this is because the ogg-vorbis encoded file is not present on the server at the specified location

more options

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